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

:root {
    --primary-color: #1a4d7a;
    --secondary-color: #2c6ba8;
    --accent-color: #f39c12;
    --text-dark: #1a1a1a;
    --text-light: #f5f5f5;
    --background-light: #ffffff;
    --background-gray: #f8f9fa;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
    --error-color: #e74c3c;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--background-light);
}

.nav-top {
    background-color: var(--background-light);
    border-bottom: 1px solid var(--border-color);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

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

.ad-label {
    font-size: 0.75rem;
    color: #666;
    background-color: #f0f0f0;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    margin-top: 0.5rem;
    width: 100%;
    text-align: center;
}

@media (min-width: 768px) {
    .ad-label {
        margin-top: 0;
        width: auto;
    }
}

.hero-split {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.hero-left,
.hero-right {
    flex: 1;
    min-width: 300px;
}

.hero-left h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-left p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    background-color: #e8eef3;
}

.cta-primary {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--text-light);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--secondary-color);
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid var(--secondary-color);
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--text-light);
}

.value-split,
.approach-split,
.benefits-split,
.cta-split,
.about-split,
.philosophy-split,
.values-split,
.contact-split {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.value-split,
.about-split,
.contact-split {
    background-color: var(--background-gray);
}

.value-image,
.value-content,
.approach-content,
.approach-visual,
.benefits-left,
.benefits-right,
.cta-content,
.cta-image,
.about-content,
.about-image,
.philosophy-image,
.philosophy-content,
.values-content,
.values-image,
.contact-info,
.contact-image {
    flex: 1;
    min-width: 300px;
}

.value-image img,
.approach-visual img,
.benefits-left img,
.cta-image img,
.about-image img,
.philosophy-image img,
.values-image img,
.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e8eef3;
}

.approach-split.reverse,
.philosophy-split.reverse {
    flex-direction: row-reverse;
}

h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

p {
    margin-bottom: 1.2rem;
    color: #555;
}

.approach-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.approach-item {
    padding: 1.5rem;
    background-color: var(--background-light);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.services-preview {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
    background-color: var(--background-light);
}

.services-preview h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.services-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    background-color: var(--background-gray);
    padding: 2rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

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

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1.5rem 0;
}

.benefits-list {
    list-style: none;
    padding-left: 0;
}

.benefits-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
    border-bottom: 1px solid var(--border-color);
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.benefits-list li:last-child {
    border-bottom: none;
}

.testimonial-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 5rem 2rem;
    background-color: var(--primary-color);
    color: var(--text-light);
    text-align: center;
}

.testimonial-container blockquote {
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-container cite {
    font-size: 1rem;
    font-style: normal;
    opacity: 0.9;
}

.page-header {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: #666;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.service-detail-split {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
    padding: 3rem;
    background-color: var(--background-gray);
    border-radius: 12px;
    flex-wrap: wrap;
}

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

.service-detail-content,
.service-detail-image {
    flex: 1;
    min-width: 300px;
}

.service-detail-content h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.service-detail-content li {
    margin-bottom: 0.8rem;
    color: #555;
}

.service-duration {
    font-style: italic;
    color: #777;
    margin-top: 1.5rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1.5rem 0;
}

.btn-select-service {
    background-color: var(--secondary-color);
    color: var(--text-light);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-select-service:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e8eef3;
}

.service-form-section,
.contact-form-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.form-container {
    background-color: var(--background-gray);
    padding: 3rem;
    border-radius: 12px;
}

.form-container h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.form-container > p {
    text-align: center;
    margin-bottom: 2.5rem;
    color: #666;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    background-color: var(--secondary-color);
    color: var(--text-light);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.info-block {
    margin-bottom: 2.5rem;
}

.info-block h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.info-block p {
    color: #555;
    line-height: 1.7;
}

.approach-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.approach-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--background-gray);
    padding: 2rem;
    border-radius: 8px;
}

.approach-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.values-list {
    margin-top: 2rem;
}

.value-item {
    margin-bottom: 2rem;
}

.value-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.team-approach,
.experience-section,
.location-info {
    max-width: 1000px;
    margin: 0 auto;
    padding: 5rem 2rem;
    text-align: center;
}

.team-approach h2,
.experience-section h2,
.location-info h2 {
    margin-bottom: 2rem;
}

.cta-simple {
    max-width: 1000px;
    margin: 0 auto;
    padding: 5rem 2rem;
    text-align: center;
    background-color: var(--background-gray);
}

.cta-simple h2 {
    margin-bottom: 1.5rem;
}

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

.thanks-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

.thanks-container {
    flex: 1;
    min-width: 300px;
}

.thanks-container h1 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.service-confirmation {
    background-color: var(--background-gray);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.thanks-image {
    flex: 1;
    min-width: 300px;
}

.thanks-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e8eef3;
}

.next-steps {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
    background-color: var(--background-gray);
}

.next-steps h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.steps-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.step-card {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.step-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.legal-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.legal-container {
    background-color: var(--background-light);
}

.legal-container h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.last-updated {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-container h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.legal-container h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-container p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.legal-container ul,
.legal-container ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.legal-container li {
    margin-bottom: 0.8rem;
    color: #555;
    line-height: 1.7;
}

.legal-container a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.legal-container a:hover {
    color: var(--primary-color);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

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

.cookie-table th {
    background-color: var(--background-gray);
    font-weight: 600;
    color: var(--primary-color);
}

.cookie-controls {
    background-color: var(--background-gray);
    padding: 2.5rem;
    border-radius: 8px;
    margin-top: 3rem;
}

.cookie-controls h2 {
    margin-top: 0;
}

.cookie-toggles {
    margin: 2rem 0;
}

.cookie-toggle {
    margin-bottom: 1.5rem;
}

.cookie-toggle label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
}

.cookie-toggle input[type="checkbox"] {
    margin-right: 1rem;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.cookie-toggle input[type="checkbox"]:disabled {
    cursor: not-allowed;
}

.footer {
    background-color: var(--text-dark);
    color: var(--text-light);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

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

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.footer-col p {
    color: #ccc;
    line-height: 1.7;
}

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

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 0;
    border-top: 1px solid #444;
    border-bottom: 1px solid #444;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    color: #aaa;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #aaa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--text-light);
    padding: 1.5rem;
    z-index: 2000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    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: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    color: var(--text-light);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: var(--success-color);
    color: var(--text-light);
}

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

.btn-reject {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .hero-left h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .nav-links {
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
    }

    .hero-split,
    .value-split,
    .approach-split,
    .benefits-split,
    .cta-split,
    .about-split,
    .philosophy-split,
    .values-split,
    .contact-split,
    .thanks-section {
        padding: 3rem 1.5rem;
    }

    .service-detail-split,
    .service-detail-split.reverse {
        flex-direction: column;
        padding: 2rem 1.5rem;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 480px) {
    .btn-primary,
    .btn-secondary,
    .btn-submit,
    .btn-select-service {
        width: 100%;
        text-align: center;
    }

    .services-grid {
        flex-direction: column;
    }

    .service-card {
        max-width: 100%;
    }
}
