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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #2C3E50;
    background-color: #FFFFFF;
    font-weight: 400;
}

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

/* Header and Navigation */
.header {
    background: #FFFFFF;
    border-bottom: 1px solid #E8EAED;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav {
    padding: 1.5rem 0;
}

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

.brand-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2C3E50;
    line-height: 1.2;
}

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

.nav-link {
    text-decoration: none;
    color: #5A6C7D;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #1A365D;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #1A365D;
}

/* Typography */
h1, h2, h3 {
    font-weight: 600;
    color: #2C3E50;
    line-height: 1.2;
}

/* Hero Section */
.hero {
    padding: 6rem 0 4rem;
    background: #FFFFFF;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2C3E50;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    color: #1A365D;
    margin-bottom: 2rem;
}

.hero-body {
    margin-bottom: 2rem;
}

.hero-body p {
    font-size: 1.1rem;
    color: #5A6C7D;
    margin-bottom: 1rem;
}

.hero-location {
    font-size: 0.9rem;
    color: #7A8B9A;
    margin-bottom: 2.5rem;
    font-style: italic;
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.cta-button.primary {
    background-color: #1A365D;
    color: #FFFFFF;
    border: 2px solid #1A365D;
}

.cta-button.primary:hover {
    background-color: #2C4F7C;
    border-color: #2C4F7C;
}

.cta-button.secondary {
    background-color: transparent;
    color: #1A365D;
    border: 2px solid #1A365D;
}

.cta-button.secondary:hover {
    background-color: #1A365D;
    color: #FFFFFF;
}

/* Services Snapshot */
.services-snapshot {
    padding: 5rem 0;
    background-color: #FAFAFA;
}

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

.service-card {
    background: #FFFFFF;
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid #E8EAED;
    text-align: center;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2C3E50;
}

.service-description {
    color: #5A6C7D;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.service-tagline {
    color: #1A365D;
    font-weight: 500;
    font-style: italic;
    font-size: 0.95rem;
}

/* Why Section */
.why-section {
    padding: 5rem 0;
    background: #FFFFFF;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2C3E50;
}

.why-list {
    list-style: none;
    max-width: 600px;
    margin: 0 auto 3rem;
    text-align: left;
}

.why-list li {
    padding: 0.75rem 0;
    font-size: 1.1rem;
    color: #5A6C7D;
    position: relative;
    padding-left: 1.5rem;
}

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

.emphasis-statement {
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: center;
}

.emphasis-statement p {
    font-size: 1.1rem;
    font-weight: 500;
    color: #1A365D;
    font-style: italic;
}

/* Section CTA */
.section-cta {
    text-align: center;
}

/* Page Sections */
.page-section {
    padding: 5rem 0;
    background: #FFFFFF;
}

.page-section:nth-child(even) {
    background-color: #FAFAFA;
}

.page-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #2C3E50;
}

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

.page-content p {
    font-size: 1.1rem;
    color: #5A6C7D;
    margin-bottom: 1.5rem;
}

.approach-list {
    list-style: none;
    text-align: left;
    margin: 2rem 0;
}

.approach-list li {
    padding: 0.75rem 0;
    font-size: 1.1rem;
    color: #5A6C7D;
    position: relative;
    padding-left: 1.5rem;
}

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

.approach-closing {
    font-weight: 500;
    color: #1A365D;
    font-style: italic;
}

/* Services Page */
.service-detail {
    padding: 4rem 0;
    background: #FFFFFF;
}

.service-detail:nth-child(even) {
    background-color: #FAFAFA;
}

.service-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #2C3E50;
}

.service-subtitle {
    font-size: 1.25rem;
    text-align: center;
    color: #1A365D;
    margin-bottom: 2rem;
    font-weight: 500;
}

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

.service-content p {
    font-size: 1.1rem;
    color: #5A6C7D;
    margin-bottom: 2rem;
}

.service-features {
    list-style: none;
    text-align: left;
    margin: 2rem 0;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.service-features li {
    padding: 0.75rem 0;
    font-size: 1rem;
    color: #5A6C7D;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #1A365D;
    font-weight: bold;
}

.service-tagline {
    color: #1A365D;
    font-weight: 500;
    font-style: italic;
    font-size: 1.1rem;
    margin-top: 2rem;
}

/* Sectors Section */
.sectors-section {
    padding: 4rem 0;
    background-color: #FAFAFA;
}

.sectors-list {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.sectors-list li {
    padding: 1rem 0;
    font-size: 1.1rem;
    color: #5A6C7D;
    position: relative;
}

/* Contact Page */
.contact-section {
    padding: 5rem 0;
    background: #FFFFFF;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto 3rem;
    text-align: center;
}

.contact-content p {
    font-size: 1.1rem;
    color: #5A6C7D;
}

.contact-details {
    max-width: 500px;
    margin: 0 auto 3rem;
    text-align: center;
}

.company-info {
    background-color: #FAFAFA;
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid #E8EAED;
}

.company-info p {
    margin-bottom: 0.75rem;
    color: #5A6C7D;
}

.company-info strong {
    color: #2C3E50;
    font-weight: 600;
}

.phone {
    font-size: 1.1rem;
    color: #1A365D;
    font-weight: 500;
}

/* Footer */
.footer {
    background-color: #FAFAFA;
    border-top: 1px solid #E8EAED;
    padding: 2rem 0;
}

.footer .container {
    text-align: center;
}

.footer p {
    color: #7A8B9A;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 0 1rem;
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .section-title,
    .page-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 4rem 0 3rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title,
    .page-title {
        font-size: 1.75rem;
    }
    
    .service-title {
        font-size: 1.5rem;
    }
    
    .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }
    
    .brand-name {
        font-size: 1.1rem;
    }
}
