* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c5f7d;
    --secondary-color: #4a8fb5;
    --accent-color: #e8a547;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --footer-bg: #1e3a4c;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container.narrow {
    max-width: 900px;
}

.top-bar {
    background: var(--primary-color);
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar a {
    color: white;
    text-decoration: none;
}

.main-nav {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.burger-menu {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 5px;
    order: 2;
}

.burger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: 0.3s;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
}

.nav-menu {
    list-style: none;
    display: none;
    gap: 30px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-white);
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.nav-menu.active {
    display: flex;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
    padding: 10px 0;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 80px 0;
    position: relative;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: var(--accent-color);
    color: white;
}

.btn-primary:hover {
    background: #d69537;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

.hero-form-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.hero-form-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.compact-form input,
.compact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 14px;
}

.expand-toggle {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 10px;
    width: 100%;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 15px;
}

.expandable-fields {
    display: none;
}

.expandable-fields.active {
    display: block;
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }
}

.two-col-section {
    padding: 80px 0;
}

.two-col-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.two-col-section.reverse .container {
    direction: rtl;
}

.two-col-section.reverse .col-text {
    direction: ltr;
}

.col-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.col-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.col-text p {
    margin-bottom: 15px;
    color: var(--text-light);
    font-size: 16px;
}

@media (max-width: 768px) {
    .two-col-section .container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .two-col-section.reverse .container {
        direction: ltr;
    }
}

.process-section {
    padding: 80px 0;
}

.bg-light {
    background: var(--bg-light);
}

.process-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.step h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.step p {
    color: var(--text-light);
}

.content-section {
    padding: 80px 0;
}

.content-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.content-section p {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 16px;
}

.testimonials-section {
    padding: 80px 0;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.testimonials-grid {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
}

.testimonial {
    background: white;
    padding: 20px 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    min-width: calc(33.333% - 20px);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-quote p {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.5;
}

.testimonial cite {
    color: var(--text-light);
    font-style: normal;
    font-size: 13px;
    display: block;
    margin-top: auto;
}

.testimonial-case h4 {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 16px;
}

.testimonial-case p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.5;
}

.testimonial-micro p {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 15px;
    color: var(--text-dark);
}

.tags {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.tags span {
    background: var(--bg-light);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    color: var(--primary-color);
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.slider-controls button {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 28px;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-controls button:hover {
    background: var(--secondary-color);
}

.slider-controls button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

@media (max-width: 1024px) {
    .testimonial {
        min-width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .testimonial {
        min-width: 100%;
    }
}

.features-section {
    padding: 80px 0;
}

.features-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.feature-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.main-footer {
    background: var(--footer-bg);
    color: white;
    padding-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-col p {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}

.footer-col address {
    font-style: normal;
    line-height: 1.8;
}

.footer-col a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: white;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-disclaimer {
    background: rgba(0,0,0,0.2);
    padding: 20px 0;
}

.footer-disclaimer p {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    text-align: center;
}

.footer-bottom {
    background: rgba(0,0,0,0.3);
    padding: 20px 0;
}

.footer-bottom p {
    text-align: center;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 20px;
    z-index: 1000;
    display: none;
}

.cookie-banner.active {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

.page-header {
    background: var(--bg-light);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    color: var(--primary-color);
}

.mission-section {
    padding: 80px 0;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mission-image img {
    width: 100%;
    border-radius: 10px;
}

.mission-text p {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 16px;
}

@media (max-width: 768px) {
    .mission-content {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 32px;
    }
}

.legal-content {
    padding: 60px 0;
}

.toc {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.toc h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.toc ul {
    list-style: none;
}

.toc li {
    margin-bottom: 10px;
}

.toc a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.toc a:hover {
    color: var(--primary-color);
}

.legal-content section {
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-top: 20px;
}

.legal-content h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-top: 25px;
    margin-bottom: 15px;
}

.legal-content p {
    margin-bottom: 15px;
    color: var(--text-light);
    line-height: 1.8;
}

.legal-content address {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 5px;
    font-style: normal;
    line-height: 1.8;
}

.terms-table {
    margin-bottom: 40px;
}

.terms-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.terms-table th,
.terms-table td {
    padding: 15px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.terms-table th {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
}

.terms-table td {
    color: var(--text-light);
}

.accordion-section {
    margin-top: 40px;
}

.accordion-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 20px;
    background: var(--bg-light);
    border: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    transition: background 0.3s;
}

.accordion-header:hover {
    background: #e8eaec;
}

.accordion-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
}

.accordion-content.active {
    padding: 20px;
    max-height: 1000px;
}

.accordion-content p {
    margin-bottom: 15px;
}

.thankyou-section {
    padding: 80px 0;
    text-align: center;
}

.thankyou-section h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thankyou-section .lead {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.confirmation-table {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    margin: 40px 0;
}

.confirmation-table h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.confirmation-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.confirmation-table th,
.confirmation-table td {
    padding: 15px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.confirmation-table th {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    width: 30%;
}

.confirmation-table td {
    color: var(--text-dark);
}
