* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    font-family: 'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #1a202c;
    background: #0f172a;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(30, 58, 138, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(30, 58, 138, 0.05) 0%, transparent 50%);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
    color: white;
    padding: 1.2rem 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover {
    transform: translateY(-1px);
}

.logo-icon {
    height: 2.8rem;
    width: auto;
    transition: all 0.3s ease;
}

.logo:hover .logo-icon {
    transform: scale(1.05);
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.8px;
    color: #f8fafc;
    margin: 0;
    position: relative;
}

.logo h1::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #1e40af);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.logo:hover h1::after {
    transform: scaleX(1);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    position: relative;
    border: 1px solid transparent;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(30, 64, 175, 0.1));
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-menu a:hover {
    color: #f8fafc;
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-1px);
}

.nav-menu a:hover::before {
    opacity: 1;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: white;
    padding: 10rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 0%, rgba(59, 130, 246, 0.03) 50%, transparent 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(59,130,246,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    animation: float 30s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0) translateX(0); }
    100% { transform: translateY(-100px) translateX(100px); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h2 {
    font-size: 4rem;
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: -1.5px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1s ease-out;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #94a3b8;
    font-weight: 400;
    animation: fadeInUp 1s ease-out 0.3s both;
    line-height: 1.7;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn.primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.btn.primary:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
}

.btn.secondary {
    background: rgba(30, 41, 59, 0.8);
    color: #e2e8f0;
    border-color: rgba(59, 130, 246, 0.3);
    backdrop-filter: blur(8px);
}

.btn.secondary:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.6);
    color: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
}

/* Features Section */
.features {
    padding: 8rem 0;
    background: #f8fafc;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(30, 64, 175, 0.05) 0%, transparent 50%);
    flex: 1;
    position: relative;
}

.features h3 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 5rem;
    color: #1e293b;
    font-weight: 700;
    position: relative;
    letter-spacing: -1px;
}

.features h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.feature {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.05), transparent);
    transition: left 0.6s;
}

.feature:hover::before {
    left: 100%;
}

.feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.4);
    background: rgba(255, 255, 255, 1);
}

.feature h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.feature p {
    color: #475569;
    line-height: 1.6;
    font-weight: 400;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: white;
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 0%, rgba(59, 130, 246, 0.03) 50%, transparent 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(59,130,246,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-header p {
    font-size: 1.2rem;
    color: #94a3b8;
    font-weight: 400;
}

/* About Page */
.about-intro {
    padding: 4rem 0;
    background: #f8fafc;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(30, 64, 175, 0.05) 0%, transparent 50%);
}

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

.intro-content h3 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.intro-content p {
    font-size: 1.2rem;
    color: #475569;
    line-height: 1.8;
}

.about-services {
    padding: 5rem 0;
    background: #f8fafc;
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.04) 0%, transparent 50%);
}

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

.service-column {
    text-align: center;
    padding: 1.5rem;
}

.service-column h4 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.service-column p {
    color: #64748b;
    line-height: 1.6;
    font-size: 1rem;
}

.about-approach {
    padding: 5rem 0;
    background: #f8fafc;
    background-image: 
        radial-gradient(circle at 75% 25%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 25% 75%, rgba(30, 64, 175, 0.03) 0%, transparent 50%);
}

.approach-content {
    max-width: 900px;
    margin: 0 auto;
}

.approach-text h3 {
    font-size: 2.2rem;
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.8px;
}

.approach-text p {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.approach-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.point {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.point:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.15);
    border-left-color: #2563eb;
    border-color: rgba(59, 130, 246, 0.2);
}

.point strong {
    color: #1e293b;
    font-weight: 700;
    display: block;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    letter-spacing: -0.3px;
}

.point span {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
}

/* Services Page */
.services-content {
    padding: 6rem 0;
    background: #f8fafc;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(30, 64, 175, 0.05) 0%, transparent 50%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.1);
    border-left: 4px solid #3b82f6;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.05), transparent);
    transition: left 0.6s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
    border-left-color: #2563eb;
    border-color: rgba(59, 130, 246, 0.4);
    background: rgba(255, 255, 255, 1);
}

.service-card h3 {
    color: #1e293b;
    margin-bottom: 1.2rem;
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.service-card p {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-card ul {
    margin-left: 1.5rem;
    margin-top: 1rem;
}

.service-card li {
    margin-bottom: 0.5rem;
    color: #64748b;
}

.cta-section {
    background: #0f172a;
    background-image: 
        radial-gradient(circle at 30% 30%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(30, 64, 175, 0.05) 0%, transparent 50%);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="dots" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(59,130,246,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>') repeat;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h3 {
    font-size: 2.5rem;
    color: #f8fafc;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.8px;
}

.cta-section p {
    color: #94a3b8;
    margin-bottom: 2rem;
}

/* Contact Page */
.contact-content {
    padding: 6rem 0;
    background: #f8fafc;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(30, 64, 175, 0.05) 0%, transparent 50%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h3,
.contact-form h3 {
    color: #1e293b;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

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

.contact-item h4 {
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-item p {
    color: #475569;
    line-height: 1.6;
}

/* Form Styles */
.contact-form {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1e293b;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(248, 250, 252, 0.8);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    color: #1e293b;
    transition: all 0.3s ease;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #64748b;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

/* Footer */
footer {
    background: #0f172a;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
    color: white;
    text-align: center;
    padding: 3rem 0;
    margin-top: auto;
}

footer p {
    margin-bottom: 0.5rem;
    color: #94a3b8;
}

footer p:first-child {
    color: #f8fafc;
    font-weight: 500;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Scroll Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        padding: 1rem 0;
    }
    
    nav {
        padding: 0 15px;
    }
    
    .nav-menu {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .nav-menu a {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
        white-space: nowrap;
    }
    
    .hero {
        padding: 6rem 0;
    }
    
    .hero-content h2 {
        font-size: 2.8rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn {
        width: 80%;
        max-width: 280px;
        text-align: center;
    }
    
    .features {
        padding: 4rem 0;
    }
    
    .features h3 {
        font-size: 2.2rem;
        margin-bottom: 3rem;
    }
    
    .features-grid {
        gap: 2rem;
    }
    
    .feature {
        padding: 2rem 1.5rem;
    }
    
    .page-header {
        padding: 4rem 0;
    }
    
    .page-header h2 {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .page-header p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .intro-content h3 {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .intro-content p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .about-intro,
    .about-services,
    .about-approach {
        padding: 3rem 0;
    }
    
    .services-overview {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-column {
        padding: 1.5rem 1rem;
    }
    
    .approach-text h3 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .approach-text p {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    .approach-points {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .point {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .services-content {
        padding: 4rem 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
        margin: 0 0.5rem;
    }
    
    .cta-section {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    nav {
        flex-direction: column;
        gap: 1rem;
        padding: 0 10px;
    }
    
    .logo {
        justify-content: center;
        gap: 0;
    }
    
    .logo-icon {
        height: 2rem;
        width: auto;
    }
    
    .logo h1 {
        font-size: 1.4rem;
        letter-spacing: -0.6px;
    }
    
    .nav-menu {
        gap: 0.5rem;
        justify-content: center;
    }
    
    .nav-menu a {
        font-size: 0.8rem;
        padding: 0.4rem 0.6rem;
    }
    
    .hero {
        padding: 4rem 0;
    }
    
    .hero-content h2 {
        font-size: 2.2rem;
        line-height: 1.2;
        padding: 0 1rem;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 1.5rem;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        width: 85%;
        max-width: 250px;
    }
    
    .cta-buttons {
        gap: 0.8rem;
    }
    
    .features {
        padding: 3rem 0;
    }
    
    .features h3 {
        font-size: 1.8rem;
        padding: 0 1rem;
    }
    
    .feature {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .feature h4 {
        font-size: 1.3rem;
    }
    
    .page-header {
        padding: 3rem 0;
    }
    
    .page-header h2 {
        font-size: 1.8rem;
        padding: 0 1rem;
    }
    
    .page-header p {
        font-size: 1rem;
        padding: 0 1.5rem;
    }
    
    .intro-content h3 {
        font-size: 1.6rem;
        padding: 0 1rem;
    }
    
    .intro-content p {
        font-size: 1rem;
        padding: 0 1.5rem;
    }
    
    .about-intro,
    .about-services,
    .about-approach {
        padding: 2.5rem 0;
    }
    
    .service-column h4 {
        font-size: 1.3rem;
    }
    
    .approach-text h3 {
        font-size: 1.5rem;
        padding: 0 1rem;
    }
    
    .approach-text p {
        font-size: 0.95rem;
        padding: 0 1rem;
    }
    
    .point {
        padding: 1.2rem;
        margin: 0 1rem;
    }
    
    .point strong {
        font-size: 1rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .service-card h3 {
        font-size: 1.4rem;
    }
    
    .cta-section h3 {
        font-size: 1.8rem;
        padding: 0 1rem;
    }
    
    .container {
        padding: 0 10px;
    }
}