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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

/* Navigation */
header {
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

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

.logo img {
    height: 60px;
    width: auto;
}

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

.nav-menu a {
    text-decoration: none;
    color: #2c5aa0;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #1a3d7a;
    background-color: #f0f5fb;
    border-radius: 4px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2c5aa0 0%, #4a7bc8 100%);
    color: #ffffff;
    padding: 5rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero .subheadline {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.hero p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: #ffffff;
    color: #2c5aa0;
}

.btn-primary:hover {
    background-color: #f0f5fb;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.btn-secondary {
    background-color: #2c5aa0;
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #1a3d7a;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Sections */
section {
    padding: 4rem 0;
}

.why-choose {
    background-color: #f8f9fa;
}

.why-choose h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 3rem;
}

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

.feature {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(44,90,160,0.2);
}

.feature h3 {
    color: #2c5aa0;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Services Section */
.services h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 3rem;
}

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

.service-card {
    background: linear-gradient(135deg, #4a7bc8 0%, #2c5aa0 100%);
    color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
}

.service-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-card p {
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Working With Us */
.working-with-us {
    background-color: #f0f5fb;
    text-align: center;
}

.working-with-us h2 {
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 1.5rem;
}

.working-with-us p {
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #2c5aa0 0%, #4a7bc8 100%);
    color: #ffffff;
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.page-header .subtitle {
    font-size: 1.3rem;
    font-weight: 300;
}

/* Content Sections */
.content-section {
    background-color: #ffffff;
}

.content-section h2 {
    color: #2c5aa0;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Approach Section */
.approach-section {
    background-color: #f8f9fa;
}

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

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

.approach-item {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #2c5aa0;
}

.approach-item h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

/* Expertise Section */
.expertise-section {
    background-color: #ffffff;
}

.expertise-section h2 {
    color: #2c5aa0;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.expertise-list {
    list-style: none;
    max-width: 800px;
    margin: 2rem auto;
}

.expertise-list li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    font-size: 1.1rem;
}

.expertise-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5aa0;
    font-weight: bold;
    font-size: 1.3rem;
}

/* Difference Section */
.difference-section {
    background-color: #f0f5fb;
    text-align: center;
}

.difference-section h2 {
    color: #2c5aa0;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.difference-section p {
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Services Detail */
.services-detail {
    background-color: #f8f9fa;
}

.services-detail h2 {
    text-align: center;
    color: #2c5aa0;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-item {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.service-item h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

/* Sectors Section */
.sectors-section {
    background-color: #ffffff;
}

.sectors-section h2 {
    color: #2c5aa0;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.sectors-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.sectors-list li {
    padding: 1rem;
    background-color: #f0f5fb;
    border-radius: 5px;
    border-left: 3px solid #2c5aa0;
}

/* Engagement Models */
.engagement-models {
    background-color: #f8f9fa;
}

.engagement-models h2 {
    text-align: center;
    color: #2c5aa0;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.model-item {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.model-item h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

/* Understanding Section */
.understanding-section {
    background-color: #f8f9fa;
}

.understanding-section h2 {
    color: #2c5aa0;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.context-list {
    list-style: none;
    max-width: 800px;
    margin: 2rem auto;
}

.context-list li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
}

.context-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2c5aa0;
    font-size: 1.5rem;
}

/* Who We Support */
.who-we-support {
    background-color: #ffffff;
}

.who-we-support h2 {
    color: #2c5aa0;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.support-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.support-list li {
    padding: 1rem;
    background-color: #f0f5fb;
    border-radius: 5px;
    border-left: 3px solid #2c5aa0;
}

/* Support Options */
.support-options {
    background-color: #f8f9fa;
}

.support-options h2 {
    text-align: center;
    color: #2c5aa0;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.option-item {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.option-item h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

/* Contact Details */
.contact-details {
    background-color: #f8f9fa;
}

.contact-details h2 {
    color: #2c5aa0;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.contact-info {
    max-width: 600px;
    margin: 0 auto;
}

.contact-info p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.contact-info a {
    color: #2c5aa0;
    text-decoration: none;
}

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

/* How We Work */
.how-we-work {
    background-color: #ffffff;
}

.how-we-work h2 {
    text-align: center;
    color: #2c5aa0;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    background-color: #f0f5fb;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border-top: 4px solid #2c5aa0;
}

.step h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}

/* Coverage Section */
.coverage-section {
    background-color: #f8f9fa;
    text-align: center;
}

.coverage-section h2 {
    color: #2c5aa0;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2c5aa0 0%, #4a7bc8 100%);
    color: #ffffff;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-section .email-cta {
    font-size: 1.3rem;
}

.cta-section a {
    color: #ffffff;
    text-decoration: none;
}

.cta-section a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: #1a3d7a;
    color: #ffffff;
    padding: 2rem 0;
    text-align: center;
}

footer a {
    color: #ffffff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero .subheadline {
        font-size: 1.2rem;
    }
    
    .service-cards {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
}


