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

:root {
    --primary-color: #1a3a52;
    --secondary-color: #2d5f7f;
    --accent-color: #e67e22;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
    --shadow: 0 2px 12px rgba(0,0,0,0.08);
    --shadow-hover: 0 4px 20px rgba(0,0,0,0.12);
}

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

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

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

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

.main-nav {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 35px;
}

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

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-color);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--primary-color);
}

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 80px 60px;
}

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    color: var(--bg-white);
    margin-bottom: 25px;
}

.hero-content p {
    font-size: 19px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 35px;
}

.hero-right {
    flex: 1;
    background: var(--bg-light);
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-primary {
    display: inline-block;
    padding: 16px 38px;
    background: var(--accent-color);
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
}

.cta-primary:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.cta-secondary {
    display: inline-block;
    padding: 16px 38px;
    background: var(--bg-white);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-2px);
}

.intro-section {
    padding: 100px 20px;
    background: var(--bg-white);
}

.split-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-content.reverse {
    flex-direction: row-reverse;
}

.content-box {
    flex: 1;
}

.content-box h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 25px;
    line-height: 1.3;
}

.content-box p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.content-box img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.highlight-box {
    background: linear-gradient(135deg, var(--accent-color), #d35400);
    padding: 50px;
    border-radius: 12px;
    color: var(--bg-white);
}

.stat-group {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 18px;
    opacity: 0.95;
}

.services-showcase {
    padding: 100px 20px;
    background: var(--bg-light);
}

.section-title {
    text-align: center;
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-intro {
    text-align: center;
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.service-card {
    flex: 1 1 calc(33.333% - 24px);
    min-width: 320px;
    background: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.service-image {
    height: 240px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-content p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.select-service {
    width: 100%;
    padding: 14px 24px;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service:hover {
    background: var(--secondary-color);
}

.trust-section {
    padding: 100px 20px;
    background: var(--bg-white);
}

.cta-band {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    text-align: center;
    color: var(--bg-white);
}

.cta-band h2 {
    font-size: 38px;
    margin-bottom: 15px;
}

.cta-band p {
    font-size: 19px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.testimonials-section {
    padding: 100px 20px;
    background: var(--bg-light);
}

.testimonials-section h2 {
    text-align: center;
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 60px;
}

.testimonials-flex {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background: var(--bg-white);
    padding: 35px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 15px;
    color: var(--text-light);
    font-weight: 600;
}

.form-section {
    padding: 100px 20px;
    background: var(--bg-white);
}

.form-header {
    text-align: center;
    margin-bottom: 50px;
}

.form-header h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.form-header p {
    font-size: 18px;
    color: var(--text-light);
}

.contact-form {
    background: var(--bg-light);
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 28px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
    cursor: pointer;
}

.checkbox-group span {
    flex: 1;
}

.checkbox-group a {
    color: var(--primary-color);
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 18px 24px;
    background: var(--accent-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.final-cta {
    padding: 100px 20px;
    background: var(--bg-light);
}

.final-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.final-cta-content h2 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.final-cta-content p {
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 35px;
}

.main-footer {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 60px 20px 30px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-col p {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 25px 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 10000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-btn.accept {
    background: var(--success-color);
    color: var(--bg-white);
}

.cookie-btn.accept:hover {
    background: #229954;
}

.cookie-btn.reject {
    background: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

.cookie-btn.reject:hover {
    background: var(--bg-white);
    color: var(--text-dark);
}

.page-hero {
    padding: 100px 20px 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--bg-white);
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

.story-section {
    padding: 100px 20px;
    background: var(--bg-white);
}

.values-section {
    padding: 100px 20px;
    background: var(--bg-light);
}

.values-section h2 {
    text-align: center;
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 60px;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.value-card {
    flex: 1;
    min-width: 260px;
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
}

.value-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.value-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.team-section {
    padding: 100px 20px;
    background: var(--bg-white);
}

.team-section h2 {
    text-align: center;
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.team-flex {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 50px;
}

.team-member {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: center;
}

.member-photo {
    width: 200px;
    height: 200px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.member-role {
    font-size: 16px;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.why-us-section {
    padding: 100px 20px;
    background: var(--bg-light);
}

.checklist {
    list-style: none;
}

.checklist li {
    padding: 12px 0 12px 35px;
    position: relative;
    font-size: 17px;
    color: var(--text-dark);
}

.checklist li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 22px;
}

.services-detailed {
    padding: 60px 20px;
}

.service-detail-block {
    margin-bottom: 100px;
}

.service-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.service-detail-block.reverse .service-split {
    flex-direction: row-reverse;
}

.service-text {
    flex: 1;
}

.service-text h2 {
    font-size: 34px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.price-highlight {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 25px;
}

.service-text h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin: 30px 0 15px;
}

.service-text ul {
    margin-left: 25px;
    margin-bottom: 25px;
}

.service-text ul li {
    margin-bottom: 10px;
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.service-image-large {
    flex: 1;
}

.service-image-large img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.extra-info {
    padding: 80px 20px;
    background: var(--bg-light);
}

.extra-info h2 {
    text-align: center;
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.info-columns {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.info-box {
    flex: 1;
    min-width: 280px;
    background: var(--bg-white);
    padding: 35px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.info-box h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.info-box p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-info-section {
    padding: 80px 20px;
}

.contact-layout {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-details {
    flex: 1;
    min-width: 320px;
}

.contact-block {
    margin-bottom: 45px;
}

.contact-block h2 {
    font-size: 26px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-block p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
}

.contact-block a {
    color: var(--accent-color);
    text-decoration: none;
}

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

.contact-map {
    flex: 1;
    min-width: 320px;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: var(--shadow);
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.directions {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
}

.directions h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.directions p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 15px;
}

.alternate-contact {
    padding: 80px 20px;
    background: var(--bg-light);
    text-align: center;
}

.alternate-contact h2 {
    font-size: 34px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.alternate-contact p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.thanks-section {
    padding: 100px 20px;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    text-align: center;
    max-width: 700px;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: var(--success-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    font-weight: 700;
}

.thanks-content h1 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.service-info {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 40px;
    font-size: 18px;
    color: var(--text-dark);
}

.next-steps {
    text-align: left;
    background: var(--bg-light);
    padding: 35px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.next-steps h2 {
    font-size: 26px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.next-steps ol {
    margin-left: 25px;
}

.next-steps ol li {
    font-size: 17px;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-page {
    padding: 80px 20px;
    background: var(--bg-white);
}

.legal-page h1 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.update-date {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 50px;
}

.legal-page h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-top: 45px;
    margin-bottom: 20px;
}

.legal-page h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-page h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-top: 20px;
    margin-bottom: 12px;
}

.legal-page p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 18px;
}

.legal-page ul,
.legal-page ol {
    margin-left: 30px;
    margin-bottom: 25px;
}

.legal-page ul li,
.legal-page ol li {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 10px;
}

.legal-page a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-page a:hover {
    color: var(--accent-color);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    box-shadow: var(--shadow);
}

.data-table thead {
    background: var(--primary-color);
    color: var(--bg-white);
}

.data-table th,
.data-table td {
    padding: 16px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.data-table tbody tr:nth-child(even) {
    background: var(--bg-light);
}

@media (max-width: 968px) {
    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-left,
    .hero-right {
        width: 100%;
    }

    .hero-right {
        min-height: 400px;
    }

    .split-content,
    .split-content.reverse {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 calc(50% - 18px);
    }

    .service-split,
    .service-detail-block.reverse .service-split {
        flex-direction: column;
    }

    .testimonials-flex {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        padding: 20px;
        box-shadow: var(--shadow);
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 17px;
    }

    .section-title {
        font-size: 32px;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .footer-grid {
        flex-direction: column;
        gap: 40px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .page-hero h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .hero-left {
        padding: 50px 30px;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .content-box h2 {
        font-size: 28px;
    }

    .stat-number {
        font-size: 38px;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .thanks-actions a {
        width: 100%;
        text-align: center;
    }
}
