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

:root {
    --primary-color: #0a2463;
    --secondary-color: #3e92cc;
    --accent-color: #fb3640;
    --light-bg: #f8f9fa;
    --dark-text: #1a1a1a;
    --light-text: #ffffff;
    --gray-text: #6c757d;
    --border-color: #dee2e6;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--light-bg);
}

/* Header & Navigation */
header {
    background-color: var(--primary-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

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

.logo h1 {
    color: var(--light-text);
    font-size: 1.5rem;
    font-weight: 600;
}

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

.nav-links a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--light-text);
    padding: 6rem 2rem;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.motto-breakdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
    text-align: left;
}

.motto-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.motto-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--light-text);
}

.motto-item p {
    opacity: 0.9;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--light-text);
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(251, 54, 64, 0.4);
}

/* Services Section */
.services {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.services h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--gray-text);
    margin-bottom: 1.5rem;
}

.service-card ul {
    list-style: none;
    padding-left: 0;
}

.service-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--dark-text);
}

.service-card ul li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Methodology Section */
.methodology {
    background: white;
    padding: 5rem 2rem;
}

.methodology h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.section-intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--gray-text);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.method-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.method-category {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.method-category h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
}

.method-category ul {
    list-style: none;
    padding-left: 0;
}

.method-category ul li {
    padding: 0.4rem 0;
    padding-left: 1.25rem;
    position: relative;
    color: var(--dark-text);
    font-size: 0.95rem;
}

.method-category ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.values-inspiration {
    max-width: 800px;
    margin: 3rem auto 0;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(10, 36, 99, 0.05) 0%, rgba(62, 146, 204, 0.05) 100%);
    border-radius: 8px;
}

.values-inspiration h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.values-inspiration p {
    font-size: 1.125rem;
    color: var(--dark-text);
    line-height: 1.8;
}

/* About Section */
.about {
    padding: 5rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.about h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.about-content p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
    line-height: 1.8;
}

.about-content ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.about-content ul li {
    margin: 1rem 0;
    font-size: 1.0625rem;
    line-height: 1.7;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--light-text);
    padding: 5rem 2rem;
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.contact-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.contact-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}

.contact-info p {
    margin: 0.75rem 0;
    font-size: 1.125rem;
}

.contact-info a {
    color: var(--light-text);
    text-decoration: none;
    border-bottom: 2px solid var(--accent-color);
    transition: border-color 0.3s;
}

.contact-info a:hover {
    border-color: var(--light-text);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--light-text);
    text-align: center;
    padding: 2rem;
}

footer p {
    margin: 0.5rem 0;
}

.footer-motto {
    font-weight: 600;
    font-size: 1.125rem;
    margin-top: 1rem;
    opacity: 0.9;
}

/* Hero Value Prop */
.value-prop {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Three Pillars Section */
.three-pillars {
    padding: 5rem 2rem;
    background: white;
}

.three-pillars h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.pillar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pillar-card {
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 8px;
    border-top: 4px solid var(--secondary-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

.pillar-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.pillar-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.pillar-card p {
    font-size: 1.0625rem;
    color: var(--gray-text);
    line-height: 1.7;
}

/* Service Detail Sections */
.service-detail {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 2px solid var(--border-color);
}

.service-detail:last-child {
    border-bottom: none;
}

.service-detail h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-overview {
    font-size: 1.125rem;
    color: var(--gray-text);
    margin-bottom: 2rem;
    font-style: italic;
}

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

.service-column h4 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 0.5rem;
}

.service-column ul {
    list-style: none;
    padding-left: 0;
}

.service-column ul li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--dark-text);
}

.service-column ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.5rem;
}

/* Resources Section */
.resources {
    background: var(--light-bg);
    padding: 5rem 2rem;
}

.resources h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 3rem;
}

.resource-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.resource-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 0.5rem;
}

.resource-card h4 {
    font-size: 1.125rem;
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.standard-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.standard-item:last-child {
    border-bottom: none;
}

.standard-item h4 {
    font-size: 1.125rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.standard-item p {
    font-size: 0.9375rem;
    color: var(--gray-text);
    line-height: 1.6;
}

.resource-card ul {
    list-style: none;
    padding-left: 0;
}

.resource-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--dark-text);
    font-size: 0.9375rem;
}

.resource-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.resource-card dl {
    margin-top: 1rem;
}

.resource-card dt {
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 1rem;
    font-size: 1.0625rem;
}

.resource-card dd {
    margin-left: 0;
    margin-bottom: 1rem;
    color: var(--gray-text);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* About Section Updates */
.professional-summary {
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--secondary-color);
}

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

.competency-column {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.competency-column h4 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.competency-column ul {
    list-style: none;
    padding-left: 0;
}

.competency-column ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--dark-text);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.competency-column ul li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.philosophy {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(10, 36, 99, 0.05) 0%, rgba(62, 146, 204, 0.05) 100%);
    border-left: 4px solid var(--secondary-color);
    border-radius: 4px;
    font-size: 1.125rem;
    font-style: italic;
    color: var(--dark-text);
    line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1.25rem;
    }

    .value-prop {
        font-size: 1.125rem;
    }

    .motto-breakdown {
        grid-template-columns: 1fr;
    }

    .pillar-grid {
        grid-template-columns: 1fr;
    }

    .service-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .resource-grid {
        grid-template-columns: 1fr;
    }

    .competency-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .logo h1 {
        font-size: 1.25rem;
    }

    nav {
        flex-direction: column;
        gap: 1rem;
    }

    .service-detail h3 {
        font-size: 1.5rem;
    }
}