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

:root {
    --primary-color: #1a4d7a;
    --secondary-color: #2b6ba8;
    --accent-color: #3d8fd1;
    --dark-text: #1a1a1a;
    --light-text: #4a4a4a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

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

.ad-notice {
    background: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 0.4rem;
    font-size: 0.85rem;
    border-bottom: 1px solid #ffeaa7;
}

.main-nav {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

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

.nav-menu a:hover {
    color: var(--primary-color);
}

.hero-split {
    display: flex;
    min-height: 600px;
    background: var(--bg-light);
}

.hero-content {
    flex: 1;
    padding: var(--spacing-xl) var(--spacing-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--bg-white);
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: var(--spacing-md);
    max-width: 600px;
}

.hero-image {
    flex: 1;
    overflow: hidden;
    background-color: var(--bg-light);
}

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

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

.cta-button:hover {
    background: var(--secondary-color);
}

.intro-split {
    display: flex;
    min-height: 500px;
}

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

.intro-image {
    flex: 1;
    overflow: hidden;
    background-color: var(--bg-light);
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-content {
    flex: 1;
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-content h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.intro-content p {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: var(--spacing-sm);
}

.services-grid {
    padding: var(--spacing-xl) var(--spacing-md);
    background: var(--bg-white);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--light-text);
}

.service-cards {
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    display: flex;
    margin-bottom: var(--spacing-lg);
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 0 0 45%;
    overflow: hidden;
    background-color: var(--bg-light);
}

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

.service-info {
    flex: 1;
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.service-info p {
    color: var(--light-text);
    margin-bottom: var(--spacing-sm);
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: var(--spacing-sm) 0;
}

.select-service {
    background: var(--accent-color);
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: background 0.3s ease;
    align-self: flex-start;
}

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

.contact-form-section {
    background: var(--bg-light);
    padding: var(--spacing-xl) var(--spacing-md);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: var(--spacing-lg);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.form-container > p {
    color: var(--light-text);
    margin-bottom: var(--spacing-md);
}

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

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
    color: var(--dark-text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

.form-checkbox {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--spacing-md);
    gap: 0.5rem;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 0.3rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-checkbox label {
    font-size: 0.95rem;
    color: var(--light-text);
    cursor: pointer;
}

.form-checkbox a {
    color: var(--accent-color);
}

.submit-button {
    background: var(--primary-color);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-button:hover {
    background: var(--secondary-color);
}

.why-us-split {
    display: flex;
    min-height: 500px;
}

.why-content {
    flex: 1;
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--bg-white);
}

.why-content h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.benefits-list {
    list-style: none;
    margin-bottom: var(--spacing-md);
}

.benefits-list li {
    padding: var(--spacing-sm) 0;
    padding-left: 2rem;
    position: relative;
    color: var(--light-text);
}

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

.why-image-placeholder {
    flex: 1;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--border-color) 100%);
}

.text-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.text-link:hover {
    color: var(--primary-color);
}

.disclaimer-section {
    background: #fff8dc;
    padding: var(--spacing-md);
}

.disclaimer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.disclaimer-content p {
    font-size: 0.9rem;
    color: #5a5a5a;
    line-height: 1.6;
}

.main-footer {
    background: var(--dark-text);
    color: #ffffff;
    padding: var(--spacing-lg) var(--spacing-md);
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

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

.footer-col h4 {
    margin-bottom: var(--spacing-sm);
    color: #ffffff;
}

.footer-col p,
.footer-col ul {
    color: #b0b0b0;
}

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

.footer-col ul li {
    margin-bottom: var(--spacing-xs);
}

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

.footer-col a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid #444;
    color: #b0b0b0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 1.5rem;
    z-index: 1000;
    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;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: var(--accent-color);
}

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

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

.cookie-btn.reject {
    background: #6c757d;
    color: white;
}

.cookie-btn:hover {
    opacity: 0.9;
}

.page-hero {
    background: var(--bg-light);
    padding: var(--spacing-xl) var(--spacing-md);
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.page-hero-content p {
    font-size: 1.3rem;
    color: var(--light-text);
}

.about-story-split {
    display: flex;
    min-height: 500px;
}

.story-content {
    flex: 1;
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-content h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.story-content p {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: var(--spacing-sm);
}

.story-image {
    flex: 1;
    overflow: hidden;
    background-color: var(--bg-light);
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.values-section {
    padding: var(--spacing-xl) var(--spacing-md);
    background: var(--bg-light);
}

.values-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.value-item {
    flex: 1;
    min-width: 250px;
    background: var(--bg-white);
    padding: var(--spacing-md);
    border-left: 4px solid var(--accent-color);
}

.value-item h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.value-item p {
    color: var(--light-text);
}

.team-split {
    display: flex;
    min-height: 500px;
}

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

.team-image {
    flex: 1;
    overflow: hidden;
    background-color: var(--bg-light);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-content {
    flex: 1;
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-content h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.team-content p {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: var(--spacing-sm);
}

.approach-section {
    padding: var(--spacing-xl) var(--spacing-md);
    background: var(--bg-light);
}

.approach-content {
    max-width: 900px;
    margin: 0 auto;
}

.approach-content h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.approach-content p {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: var(--spacing-sm);
}

.cta-split {
    display: flex;
    min-height: 400px;
}

.cta-content {
    flex: 1;
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--primary-color);
    color: white;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: var(--spacing-md);
    color: white;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-md);
}

.cta-content .cta-button {
    background: white;
    color: var(--primary-color);
}

.cta-content .cta-button:hover {
    background: var(--bg-light);
}

.cta-visual {
    flex: 1;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--spacing-lg) var(--spacing-md);
}

.service-detail-card {
    display: flex;
    margin-bottom: var(--spacing-xl);
    gap: var(--spacing-lg);
}

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

.service-detail-left {
    flex: 0 0 45%;
    overflow: hidden;
    background-color: var(--bg-light);
}

.service-detail-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-right h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.service-detail-right p {
    color: var(--light-text);
    margin-bottom: var(--spacing-sm);
}

.service-detail-right ul {
    margin-bottom: var(--spacing-md);
    padding-left: 1.5rem;
}

.service-detail-right ul li {
    margin-bottom: var(--spacing-xs);
    color: var(--light-text);
}

.price-large {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: var(--spacing-md) 0;
}

.pricing-note {
    background: var(--bg-light);
    padding: var(--spacing-lg) var(--spacing-md);
}

.pricing-note-content {
    max-width: 900px;
    margin: 0 auto;
}

.pricing-note-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.pricing-note-content p {
    color: var(--light-text);
    margin-bottom: var(--spacing-sm);
}

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

.contact-info-block {
    flex: 1;
    padding: var(--spacing-lg);
    background: var(--bg-white);
}

.contact-info-block h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
}

.contact-detail {
    margin-bottom: var(--spacing-lg);
}

.contact-detail h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.contact-detail p {
    color: var(--light-text);
    line-height: 1.8;
}

.contact-detail .note {
    font-size: 0.9rem;
    font-style: italic;
    color: #777;
}

.email-display {
    font-weight: 600;
    color: var(--dark-text);
}

.contact-visual {
    flex: 1;
    overflow: hidden;
    background-color: var(--bg-light);
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-approach {
    padding: var(--spacing-xl) var(--spacing-md);
    background: var(--bg-light);
}

.approach-box {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: var(--spacing-lg);
    border-left: 4px solid var(--accent-color);
}

.approach-box h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.approach-box p {
    color: var(--light-text);
    margin-bottom: var(--spacing-sm);
}

.faq-section {
    padding: var(--spacing-xl) var(--spacing-md);
    background: var(--bg-white);
}

.faq-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.faq-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.faq-item {
    flex: 1;
    min-width: 280px;
    background: var(--bg-light);
    padding: var(--spacing-md);
}

.faq-item h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.faq-item p {
    color: var(--light-text);
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-xl) var(--spacing-md);
    background: var(--bg-light);
}

.thanks-content {
    text-align: center;
    max-width: 700px;
    background: var(--bg-white);
    padding: var(--spacing-xl);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.thanks-icon {
    font-size: 4rem;
    color: var(--success-color);
    margin-bottom: var(--spacing-md);
}

.thanks-content h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.thanks-lead {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: var(--spacing-md);
}

.thanks-info {
    margin: var(--spacing-lg) 0;
}

.thanks-info p {
    color: var(--light-text);
    margin-bottom: var(--spacing-sm);
}

.service-confirmation {
    background: var(--bg-light);
    padding: var(--spacing-md);
    margin: var(--spacing-md) 0;
    border-radius: 4px;
}

.thanks-actions {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    margin-top: var(--spacing-lg);
    flex-wrap: wrap;
}

.legal-page {
    padding: var(--spacing-xl) var(--spacing-md);
    background: var(--bg-white);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.legal-intro {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: var(--spacing-lg);
}

.legal-content h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
}

.legal-content h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-xs);
}

.legal-content p {
    color: var(--light-text);
    margin-bottom: var(--spacing-sm);
}

.legal-content ul {
    margin-bottom: var(--spacing-md);
    padding-left: 2rem;
}

.legal-content ul li {
    margin-bottom: var(--spacing-xs);
    color: var(--light-text);
}

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

.legal-update {
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--border-color);
    font-style: italic;
    color: #777;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--spacing-md) 0;
}

.cookies-table th,
.cookies-table td {
    padding: var(--spacing-sm);
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookies-table th {
    background: var(--bg-light);
    color: var(--primary-color);
    font-weight: 600;
}

.cookies-table td {
    color: var(--light-text);
}

.url-display {
    font-weight: 600;
    color: var(--dark-text);
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .service-card,
    .about-story-split,
    .team-split,
    .cta-split,
    .service-detail-card,
    .contact-split,
    .why-us-split {
        flex-direction: column;
    }

    .hero-content h1,
    .page-hero-content h1 {
        font-size: 2rem;
    }

    .nav-container {
        padding: 1rem;
    }

    .nav-menu {
        gap: 1rem;
    }

    .cookie-content {
        flex-direction: column;
    }

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