/* Minimal CSS Framework - KL Photography Style */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 18px;
    line-height: 1.6;
    color: #333333;
    background-color: #ffffff;
    scroll-behavior: smooth;
}

body {
    font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
    margin: 0;
    padding: 0;
    padding-top: 80px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
    color: #333333;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.75rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

h4 {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.7;
}

ul, ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    list-style-position: outside;
}

li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    text-align: left;
}

strong {
    font-weight: 500;
}

/* Layout Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

/* Logo Styles */
.logo-section {
    text-align: center;
    margin: 2rem 0;
}

.company-logo {
    max-width: 300px;
    height: auto;
    display: block;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .company-logo {
        max-width: 250px;
    }
    
    .logo-section {
        margin: 1.5rem 0;
    }
}

@media (max-width: 480px) {
    .company-logo {
        max-width: 200px;
    }
    
    .logo-section {
        margin: 1rem 0;
    }
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(233, 236, 239, 0.3);
}

nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 0;
    padding: 0;
}

@media (max-width: 768px) {
    nav ul {
        gap: 30px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav .container {
        padding: 0 20px;
    }
}

nav a {
    text-decoration: none;
    color: #333333;
    font-size: 1rem;
    font-weight: 400;
    text-transform: lowercase;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
    position: relative;
}

nav a:hover {
    color: #6c757d;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 1px;
    background-color: #6c757d;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

nav a:hover::after {
    width: 100%;
}

/* Language Toggle */
.language-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.language-toggle a {
    padding: 0.25rem 0.5rem;
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.language-toggle a:hover {
    color: #333;
}

.language-toggle a.active {
    color: #333;
    font-weight: 500;
}

.language-toggle .separator {
    color: #ccc;
    font-size: 0.9rem;
}

/* Main Content */
main {
    padding: 0;
}

section {
    margin-bottom: 80px;
}

section:last-child {
    margin-bottom: 60px;
}

/* Parallax Hero Section */
.parallax-hero {
    height: 100vh;
    background-image: url('images/finance10.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-title {
    font-size: 4rem;
    font-weight: 300;
    color: #ffffff;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    max-width: 1000px;
    line-height: 1.2;
    margin: 0;
}

/* Content that scrolls over background */
.content-overlay {
    background: #ffffff;
    min-height: 100vh;
    position: relative;
    z-index: 10;
    padding: 80px 0;
    margin-top: 0;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-image {
    margin: 2rem 0 3rem;
    text-align: center;
}

.lead {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: #333333;
}

.services-preview {
    background: #f8f9fa;
    padding: 3rem 2rem;
    border-radius: 12px;
    margin: 3rem 0;
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-list li {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.services-list li:before {
    content: '•';
    color: #333333;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.vision-statement {
    margin-top: 4rem;
}

.vision-statement h2 {
    font-size: 2rem;
    font-weight: 300;
    color: #333333;
    margin-bottom: 1.5rem;
}

.vision-statement p {
    font-size: 1.2rem;
    color: #6c757d;
    line-height: 1.7;
}

/* Legacy Hero styles for other pages */
.hero {
    text-align: center;
    padding: 40px 0 60px;
}

.hero ul {
    max-width: 800px;
    margin: 0 auto 1.5rem;
    text-align: center;
    padding-left: 0;
    list-style-position: inside;
}

.hero li {
    text-align: center;
}

/* Services Page - Left-align bullet points and vertically center with image */
#services .grid-2 {
    align-items: center;
}

#services .grid-2 ul {
    padding-left: 1.5rem;
    list-style-position: outside;
    text-align: left;
    margin: 0;
}

#services .grid-2 li {
    text-align: left;
    margin-bottom: 0.75rem;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: #333333;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.25rem;
    }
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    color: #6c757d;
    line-height: 1.7;
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 60px;
    margin-bottom: 60px;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

@media (max-width: 768px) {
    .grid {
        gap: 40px;
    }
    
    .grid-2 {
        grid-template-columns: 1fr;
    }
    
    .grid-3 {
        grid-template-columns: 1fr;
    }
}

/* Cards */
.card {
    background: #ffffff;
    padding: 40px;
    border: 1px solid #f8f9fa;
    transition: all 0.3s ease;
}

.card:hover {
    border-color: #e9ecef;
    transform: translateY(-2px);
}

.card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 400;
}

.card p {
    margin-bottom: 0;
    color: #6c757d;
    font-size: 0.95rem;
}

/* Value Proposition Section */
.value-proposition {
    background: #f8f9fa;
    padding: 60px 0;
    margin: 80px 0;
}

.value-proposition h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.value-proposition .subheadline {
    text-align: center;
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 800px;
    margin: 0 auto 2.5rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.benefit-card {
    background: #ffffff;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: #e9ecef;
    transform: translateY(-2px);
}

.benefit-card h4 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #333333;
}

.benefit-card p {
    margin: 0;
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.6;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

figure {
    margin: 40px 0;
    text-align: center;
}

figcaption {
    font-size: 0.9rem;
    color: #6c757d;
    margin-top: 1rem;
    font-style: italic;
}

/* Links */
a {
    color: #333333;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #6c757d;
}

/* Download Links */
.download-link {
    display: inline-block;
    padding: 12px 24px;
    background: #333333;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    margin: 10px 0;
}

.download-link:hover {
    background: #6c757d;
    color: #ffffff;
    transform: translateY(-1px);
}

/* Contact Section */
#contact {
    background: #f8f9fa;
    padding: 60px 0;
    text-align: center;
}

address {
    font-style: normal;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #6c757d;
    margin: 1.5rem 0;
}

address strong {
    color: #333333;
    font-size: 1.3rem;
    display: block;
    margin-bottom: 1rem;
}

address a {
    color: #333333;
    text-decoration: underline;
    text-decoration-color: #e9ecef;
    transition: all 0.3s ease;
}

address a:hover {
    color: #6c757d;
    text-decoration-color: #6c757d;
}

/* Simple CTA Section */
.simple-cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    margin-top: 60px;
    text-align: center;
    color: white;
}

.simple-cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
    font-weight: 600;
}

.simple-cta-section p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    display: inline-block;
    padding: 15px 40px;
    background: white;
    color: #667eea;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: #f8f8f8;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Contact Section */
.contact-section {
    background: #f8f9fa;
    padding: 80px 0;
    margin-top: 60px;
}

.contact-section.contact-page {
    margin-top: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Left Side - Transformation Phases */
.contact-left h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #1a1a1a;
    font-weight: 600;
}

.transformation-phases {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.phase {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.phase h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.phase ul {
    list-style: none;
    padding: 0;
}

.phase ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.phase ul li:before {
    content: "•";
    position: absolute;
    left: 8px;
    color: #00A6B8;
    font-weight: bold;
}

.phase ul li strong {
    color: #2c3e50;
}

/* Right Side - Profile Card */
.contact-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.profile-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.profile-image {
    width: 200px;
    height: 200px;
    border-radius: 0;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 4px solid #f0f0f0;
}

.profile-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #1a1a1a;
}

.profile-title {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.profile-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: left;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #00A6B8;
    margin-bottom: 5px;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Contact Information */
.contact-info {
    text-align: left;
    margin-top: 20px;
}

.contact-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-item {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-item a {
    color: #00A6B8;
    text-decoration: none;
    font-size: 1rem;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 35px;
    border-radius: 12px;
    text-align: center;
    color: white;
}

.cta-section h3 {
    color: white;
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.cta-section p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 25px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn {
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: white;
    color: #667eea;
}

.btn-primary:hover {
    background: #f8f8f8;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-left h2 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .profile-image {
        width: 150px;
        height: 150px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid #f0f0f0;
    background: #ffffff;
}

footer small {
    font-size: 0.85rem;
    color: #6c757d;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Lightbox */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease-out;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 2rem;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.lightbox-close:hover {
    opacity: 0.7;
}

/* Merged Services Sections */
.services-detailed {
    padding: 30px 0 40px;
    background: #ffffff;
}

.services-header {
    text-align: center;
    margin-bottom: 30px;
}

.services-header h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #333333;
    margin-bottom: 1rem;
}

.services-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.services-image {
    margin: 0;
}

.services-categories {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-category h3 {
    font-size: 1.3rem;
    font-weight: 500;
    color: #333333;
    margin-bottom: 1rem;
}

.service-category ul {
    margin: 0;
    padding-left: 1.5rem;
}

.service-category li {
    margin-bottom: 0.75rem;
    color: #6c757d;
    line-height: 1.6;
}

/* Core Offerings Section */
.core-offerings {
    padding: 40px 0 60px;
    background: #f8f9fa;
}

.core-offerings .container {
    max-width: 1000px;
    margin: 0 auto;
}

.offerings-content-full {
    text-align: center;
}

.offerings-content-full h2 {
    font-size: 2rem;
    font-weight: 300;
    color: #333333;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.offerings-list {
    margin: 0 auto;
    padding-left: 1.5rem;
    max-width: 800px;
    text-align: left;
}

.offerings-list li {
    margin-bottom: 1.25rem;
    color: #6c757d;
    line-height: 1.7;
    font-size: 1rem;
}

.offerings-list strong {
    color: #333333;
    font-weight: 500;
}

/* Optimized Section Spacing */
.content-overlay {
    padding: 40px 0 20px;
}

.services-detailed {
    padding: 30px 0 40px;
}

.value-proposition {
    margin: 40px 0 60px;
}

/* Mobile Responsive for Merged Sections */
@media (max-width: 768px) {
    .services-main-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-categories {
        gap: 25px;
    }
    
    .core-offerings .container {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .services-header h2 {
        font-size: 2rem;
    }
    
    .offerings-content-full h2 {
        font-size: 1.75rem;
    }
    
    .services-detailed {
        padding: 20px 0 30px;
    }
    
    .core-offerings {
        padding: 30px 0 50px;
    }
    
    .content-overlay {
        padding: 30px 0 15px;
    }
    
    .services-header {
        margin-bottom: 25px;
    }
}


.contact-content {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2 {
    margin-bottom: 2rem;
    color: #333333;
}

.contact-details {
    margin-bottom: 3rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #333333;
    margin-bottom: 0.5rem;
}

.contact-item p {
    margin: 0;
    font-size: 1.1rem;
}

.contact-item a {
    color: #333333;
    text-decoration: underline;
    text-decoration-color: #e9ecef;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: #6c757d;
    text-decoration-color: #6c757d;
}

.expertise-areas {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.expertise-areas h3 {
    margin-bottom: 1.5rem;
    color: #333333;
}

.expertise-areas ul {
    margin: 0;
    padding-left: 1.5rem;
}

.expertise-areas li {
    margin-bottom: 0.75rem;
    color: #6c757d;
}

.profile-card {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.profile-card:hover {
    border-color: #e9ecef;
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.profile-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.profile-info {
    padding: 2rem;
}

.profile-info h2 {
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
    color: #333333;
}

.profile-info h3 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 400;
    color: #6c757d;
}

.profile-info p {
    margin-bottom: 2rem;
    color: #6c757d;
    line-height: 1.7;
}

.profile-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    text-align: center;
}

.highlight-item h4 {
    font-size: 1.4rem;
    font-weight: 500;
    color: #333333;
    margin-bottom: 0.25rem;
}

.highlight-item p {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
}

.call-to-action {
    background: #f8f9fa;
    padding: 80px 0;
    text-align: center;
}

.call-to-action h2 {
    margin-bottom: 1rem;
    color: #333333;
}

.call-to-action p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    color: #6c757d;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.download-link.secondary {
    background: transparent;
    color: #333333;
    border: 2px solid #333333;
}

.download-link.secondary:hover {
    background: #333333;
    color: #ffffff;
}

/* Parallax Mobile Responsive */
@media (max-width: 768px) {
    .parallax-hero {
        background-attachment: scroll;
        height: 70vh;
    }
    
    .parallax-title {
        font-size: 2.5rem;
        padding: 0 20px;
    }
    
    .content-overlay {
        padding: 60px 0;
    }
    
    .services-preview {
        padding: 2rem 1.5rem;
        margin: 2rem 0;
    }
    
    .vision-statement h2 {
        font-size: 1.75rem;
    }
}

/* Contact Page Mobile Responsive */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .profile-highlights {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .call-to-action {
        padding: 60px 0;
    }
}

/* Responsive Typography */
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    body {
        padding-top: 70px;
    }
    
    nav {
        padding: 15px 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    section {
        margin-bottom: 80px;
    }
    
    .value-proposition {
        padding: 60px 0;
        margin: 80px 0;
    }
    
    #contact {
        padding: 60px 0;
    }
}