* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1B3B7B;
    --primary-dark: #142d5c;
    --accent-pink: #E91E8C;
    --accent-orange: #FF9F1C;
    --accent-purple: #8B5BA8;
    --text-color: #333;
    --light-bg: #F8F9FB;
    --white: #ffffff;
    --border-color: #d4d8e0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: #fafafa;
}

/* Header & Navigation */
header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 50%, var(--accent-purple) 100%);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 4px 16px rgba(27, 59, 123, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex: 1;
}

.logo-image {
    height: 70px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.2));
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-text h1 {
    font-size: 2rem;
    margin: 0;
    font-weight: 700;
    color: white;
    letter-spacing: -0.5px;
}

.logo-text .tagline {
    font-size: 0.85rem;
    opacity: 0.9;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    margin: 0.25rem 0 0 0;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: flex-end;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--accent-orange);
    border-bottom-color: var(--accent-orange);
}

.language-switch {
    margin-left: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    font-weight: 600;
}

.language-switch a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    padding: 0.2rem 0.35rem;
    border-radius: 4px;
}

.language-switch a.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
}

.language-switch a:hover {
    color: #fff;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 50%, var(--accent-purple) 100%);
    color: white;
    padding: 6rem 2rem;
    text-align: center;
    background-attachment: fixed;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-orange);
    color: #fff;
    padding: 0.75rem 2.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-button:hover {
    background-color: var(--accent-pink);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 30, 140, 0.2);
}

.cta-button.primary {
    background-color: var(--accent-pink);
    color: white;
}

.cta-button.primary:hover {
    background-color: #d01682;
    box-shadow: 0 4px 12px rgba(233, 30, 140, 0.3);
}

/* Services Section */
.services-overview {
    padding: 4rem 0;
    text-align: center;
}

.services-overview h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.services-grid--featured {
    grid-template-columns: repeat(3, 1fr);
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.service-card--featured {
    border-top: 3px solid var(--accent-pink);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    color: #666;
    line-height: 1.8;
}

.trust-strip {
    background: var(--light-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.85rem 1rem;
    text-align: center;
    margin: 2rem 0 0;
}

.trust-strip p {
    margin: 0;
    color: var(--primary-dark);
    font-size: 0.95rem;
}

.why-us {
    padding: 1rem 0 3rem;
}

.why-us h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.why-us-card {
    background: #fff;
    border-radius: 8px;
    border-top: 3px solid var(--accent-orange);
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.why-us-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.15rem;
}

.why-us-card p {
    color: #666;
    margin: 0;
}

.cta-section--strong {
    margin-top: 0;
}

/* Secondary services tags */
.services-secondary {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: var(--light-bg);
    border-radius: 8px;
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 2rem;
}

.secondary-tag {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 0.3rem 0.85rem;
    color: var(--text-color);
    font-size: 0.85rem;
}

/* Services secondary block (services page) */
.services-secondary-block {
    background: var(--light-bg);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.services-secondary-block h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

/* Expertise section */
.expertise-grid--wide {
    grid-template-columns: repeat(3, 1fr);
}

.expertise-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.expertise-item--primary {
    border-top: 3px solid var(--accent-orange);
}

.expertise-also {
    background: var(--light-bg);
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.expertise-also h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.expertise-also p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Benefits Section */
.benefits {
    background: var(--light-bg);
    padding: 3rem 0;
    margin: 3rem 0;
}

.benefits h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
}

.benefits-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.benefits-list li {
    font-size: 1.1rem;
    padding: 1rem;
    background: white;
    border-radius: 5px;
    border-left: 4px solid var(--accent-pink);
}

/* CTA Section */
.cta-section {
    background: var(--light-bg);
    padding: 3rem 0;
    text-align: center;
    margin: 2rem 0;
}

.cta-section h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

/* Page Headers */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 50%, var(--accent-purple) 100%);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
    margin: 0 -2rem;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.page-header .page-header-subtitle {
    margin-bottom: 1.5rem;
}

/* About Section */
.about-content {
    padding: 3rem 0;
}

.about-intro {
    margin-bottom: 3rem;
}

.about-intro h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about-intro--styled {
    background: linear-gradient(135deg, rgba(27, 59, 123, 0.08), rgba(139, 91, 168, 0.12));
    border: 1px solid rgba(27, 59, 123, 0.15);
    border-radius: 12px;
    padding: 2rem;
}

.about-badge {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    border-radius: 999px;
    padding: 0.35rem 0.85rem;
    margin-bottom: 1rem;
}

.about-lead {
    font-size: 1.2rem;
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: 1rem;
}

.about-highlights {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.about-highlight-card {
    background: #fff;
    border-radius: 10px;
    padding: 1rem;
    border-top: 3px solid var(--accent-orange);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}

.about-highlight-card h3 {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.about-highlight-card p {
    margin: 0;
    color: #666;
    font-size: 0.92rem;
    line-height: 1.5;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

/* Contact Section */
.contact-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    padding: 3rem 0;
}

.contact-form-wrapper {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-pink);
    box-shadow: 0 0 0 3px rgba(233, 30, 140, 0.1);
}

.btn-submit {
    background-color: var(--accent-pink);
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    align-self: flex-start;
    margin-top: 1rem;
}

.btn-submit:hover {
    background-color: var(--accent-orange);
}

.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.contact-info h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.info-item {
    margin-bottom: 2rem;
}

.info-item h3 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.info-item p {
    color: #666;
}

.alert {
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1.5rem;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

/* Services Detailed */
.services-detailed {
    padding: 3rem 0;
    display: grid;
    gap: 3rem;
}

.service-detail {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--accent-pink);
}

.service-detail h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-detail ul {
    list-style: none;
    margin-top: 1rem;
}

.service-detail li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    color: #666;
}

.service-detail li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: bold;
}

.service-rates {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 3rem;
}

.service-rates h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--accent-purple);
    border-left: 3px solid var(--accent-orange);
    padding-left: 0.75rem;
}

/* Dual audience section */
.dual-audience {
    padding: 3rem 0;
    background: var(--light-bg);
}

.audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.audience-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.audience-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.audience-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .audience-grid {
        grid-template-columns: 1fr;
    }

    .services-grid--featured {
        grid-template-columns: 1fr;
    }

    .expertise-grid--wide {
        grid-template-columns: 1fr;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .services-secondary {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Privacy Content */
.privacy-content {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.privacy-content h2 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.privacy-content ul {
    list-style: none;
    margin: 1rem 0;
}

.privacy-content li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
}

.privacy-content li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-pink);
    font-weight: bold;
}

/* Error Content */
.error-content {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    margin: 2rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.error-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.btn-primary {
    display: inline-block;
    background-color: var(--accent-pink);
    color: white;
    padding: 0.75rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--accent-orange);
}

/* Footer */
footer {
    background-color: #232323;
    color: white;
    padding: 2rem 0;
    margin-top: 4rem;
    text-align: center;
}

footer p {
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-links a {
    color: var(--accent-orange);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-pink);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 1.5rem;
    }

    .logo-container {
        gap: 0.8rem;
        margin-bottom: 1rem;
    }

    .logo-image {
        height: 50px;
    }

    .logo-text h1 {
        font-size: 1.5rem;
    }

    .logo-text .tagline {
        font-size: 0.8rem;
    }

    .nav-links {
        gap: 1.5rem;
        justify-content: center;
    }

    .language-switch {
        margin-left: 0;
        margin-top: 0.25rem;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .contact-section {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .page-header {
        padding: 2rem 1rem;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0.75rem 1rem;
    }

    .logo-container {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .logo-image {
        height: 45px;
    }

    .logo-text h1 {
        font-size: 1.3rem;
    }

    .logo-text .tagline {
        font-size: 0.75rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .language-switch {
        font-size: 0.8rem;
    }

    .hero {
        padding: 3rem 1rem;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .cta-button {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
}
