@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

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

:root {
    --primary-color: #2563eb;       /* The active blue color */
    --primary-hover: #1e3a8a;       /* The deep blue color for hover states */
    --text-dark: #0f172a;          /* Deep slate for headings */
    --text-light: #475569;         /* Muted slate for descriptions */
    --border-light: #e2e8f0;       /* Very thin, clean grey border */
    --white: #ffffff;
}

body {
    font-family: 'Google Sans', 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header Styling (Clean Plain White) */
.site-header {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.logo-light {
    color: var(--text-dark);
    font-weight: 500;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 15px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.main-nav a:hover {
    color: var(--primary-color);
}

/* Hero Section (Plain White Background) */
.hero-section {
    background-color: var(--white);
    padding: 100px 0;
    border-bottom: 1px solid var(--border-light);
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    max-width: 800px;
}

.hero-content h1 {
    font-size: 46px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.25;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}

.hero-content p {
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 14.5px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 1px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-color);
    border: 1px solid var(--border-light);
}

.btn-secondary:hover {
    background-color: var(--border-light);
    border-color: var(--primary-color);
}

/* Sections Common Header */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 56px auto;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-light);
}

/* About Section (Plain White Background) */
.about-section {
    padding: 100px 0;
    background-color: var(--white);
    border-bottom: 1px solid var(--border-light);
}

.about-layout-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 64px;
    align-items: start;
}

.about-left-col {
    display: flex;
    flex-direction: column;
}

.about-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.about-left-col h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.5px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-lead {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-light);
    line-height: 1.5;
}

.about-right-col {
    font-size: 16.5px;
    color: var(--text-light);
    line-height: 1.7;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Services Section (Plain White Background) */
.services-section {
    padding: 100px 0;
    background-color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background-color: var(--white);
    border: 1px solid var(--border-light);
    padding: 40px 32px;
    border-radius: 8px;
    transition: border-color 0.2s ease;
}

.service-card:hover {
    border-color: var(--primary-color);
}

.service-icon {
    color: var(--primary-color);
    width: 44px;
    height: 44px;
    margin-bottom: 24px;
}

.service-card h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.service-card p {
    font-size: 14.5px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Streamlined Footer (Primary Deep Blue Background) */
.site-footer {
    background-color: #1E3A8A;
    color: var(--white);
    padding: 80px 0;
    border-top: none;
}

.footer-simple-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 64px;
    flex-wrap: wrap;
}

.footer-left {
    max-width: 400px;
}

.footer-logo {
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.footer-desc {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-right {
    max-width: 500px;
}

.footer-contact-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.footer-address {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 16px;
}

.footer-email {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-email a {
    color: #93c5fd;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.footer-email a:hover {
    color: var(--white);
}

/* Responsive Rules */
@media (max-width: 768px) {
    /* Section paddings & text sizing */
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-content h1 {
        font-size: 28px;
        line-height: 1.35;
        letter-spacing: -0.8px;
        margin-bottom: 16px;
    }
    
    .hero-content p {
        font-size: 15.5px;
        line-height: 1.5;
        margin-bottom: 28px;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 260px;
        margin: 0 auto;
    }
    
    .hero-actions .btn {
        width: 100%;
        text-align: center;
        padding: 12px 24px;
    }
    
    .section-header {
        margin-bottom: 36px;
    }
    
    .section-header h2 {
        font-size: 26px;
        margin-bottom: 8px;
    }
    
    .section-subtitle {
        font-size: 14.5px;
    }

    /* About Section Grid */
    .about-section {
        padding: 60px 0;
    }
    
    .about-layout-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    
    .about-left-col h2 {
        font-size: 28px;
        margin-bottom: 10px;
    }
    
    .about-lead {
        font-size: 15.5px;
    }
    
    .about-right-col {
        font-size: 15px;
        gap: 16px;
    }

    /* Services Grid & Cards */
    .services-section {
        padding: 60px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 28px 24px;
    }
    
    .service-icon {
        width: 38px;
        height: 38px;
        margin-bottom: 16px;
    }
    
    .service-card h3 {
        font-size: 17px;
        margin-bottom: 12px;
    }
    
    .service-card p {
        font-size: 13.5px;
    }

    /* Header Adjustments */
    .header-container {
        flex-direction: column;
        height: auto;
        padding: 16px 0;
        gap: 12px;
        text-align: center;
    }
    
    .logo {
        font-size: 18px;
    }
    
    .main-nav ul {
        gap: 20px;
    }
    
    .main-nav a {
        font-size: 13.5px;
    }

    /* Footer Adjustments */
    .site-footer {
        padding: 50px 0;
    }
    
    .footer-simple-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 36px;
    }
    
    .footer-left,
    .footer-right {
        width: 100%;
        max-width: 100%;
    }
    
    .footer-desc {
        margin: 0 auto;
        max-width: 320px;
    }
    
    .footer-address {
        text-align: center;
    }
}
