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

:root {
    --color-primary: #2c3e50;
    --color-secondary: #e74c3c;
    --color-accent: #f39c12;
    --color-bg-light: #ecf0f1;
    --color-bg-dark: #34495e;
    --color-text: #2c3e50;
    --color-text-light: #7f8c8d;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--color-text);
    overflow-x: hidden;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.95);
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    animation: slideUp 0.4s ease;
}

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

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.btn-reject {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.main-header {
    position: relative;
    z-index: 1000;
}

.ad-disclosure {
    background: var(--color-accent);
    color: white;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.875rem;
}

.floating-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: absolute;
    top: 2.5rem;
    left: 0;
    right: 0;
    z-index: 100;
}

.logo {
    font-size: 1.75rem;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    transition: color 0.3s ease;
}

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

.hero-asymmetric {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 65%;
    height: 100%;
    z-index: 1;
    background-color: var(--color-bg-dark);
}

.hero-image-overlay img {
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.hero-content-offset {
    position: relative;
    z-index: 10;
    padding: var(--spacing-xl) 8%;
    max-width: 600px;
    background: white;
    margin-left: 5%;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.2);
}

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

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-lg);
}

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

.cta-primary:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3);
}

.intro-block-irregular {
    display: flex;
    align-items: stretch;
    margin: var(--spacing-xl) 0;
    position: relative;
}

.intro-left {
    width: 40%;
    margin-left: 8%;
    background-color: var(--color-bg-light);
}

.intro-left img {
    width: 100%;
    height: 100%;
    display: block;
}

.intro-right-offset {
    width: 50%;
    padding: var(--spacing-lg);
    background: var(--color-bg-dark);
    color: white;
    margin-left: -5%;
    z-index: 5;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-right-offset h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.intro-right-offset p {
    margin-bottom: var(--spacing-sm);
    font-size: 1.1rem;
}

.services-asymmetric {
    padding: var(--spacing-xl) 5%;
    background: var(--color-bg-light);
}

.services-header-offset {
    max-width: 500px;
    margin-left: 10%;
    margin-bottom: var(--spacing-lg);
}

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

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

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: white;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.card-large {
    width: calc(60% - 1rem);
}

.card-medium {
    width: calc(50% - 1rem);
}

.card-small {
    width: calc(40% - 1rem);
}

.service-card img {
    width: 100%;
    height: 250px;
    display: block;
    background-color: var(--color-bg-dark);
}

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

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

.service-info p {
    color: var(--color-text-light);
    margin-bottom: var(--spacing-md);
    flex-grow: 1;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-md);
}

.select-service {
    padding: 0.875rem 2rem;
    background: var(--color-primary);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.form-section-offset {
    padding: var(--spacing-xl) 0;
    background: white;
}

.form-container-asymmetric {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.form-visual {
    width: 35%;
    background-color: var(--color-bg-dark);
}

.form-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.form-content {
    width: 65%;
    padding: var(--spacing-xl) var(--spacing-lg);
    background: white;
}

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

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

.booking-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

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

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

.form-group input,
.form-group textarea {
    padding: 0.875rem;
    border: 2px solid var(--color-bg-light);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background: var(--color-bg-light);
    cursor: not-allowed;
}

.btn-submit {
    padding: 1.25rem 3rem;
    background: var(--color-secondary);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: bold;
    border-radius: 4px;
    transition: all 0.3s ease;
    margin-top: var(--spacing-md);
}

.btn-submit:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3);
}

.trust-section-overlap {
    padding: var(--spacing-xl) 5%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-bg-dark) 100%);
    margin-top: -3rem;
    position: relative;
    z-index: 5;
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.trust-content h2 {
    font-size: 3rem;
    margin-bottom: var(--spacing-lg);
}

.trust-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
}

.stat-item {
    flex: 1;
    min-width: 200px;
}

.stat-number {
    font-size: 4rem;
    font-weight: bold;
    color: var(--color-accent);
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
}

.main-footer {
    background: var(--color-primary);
    color: white;
    padding: var(--spacing-xl) 5% var(--spacing-md);
}

.footer-content-irregular {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    max-width: 1400px;
    margin: 0 auto var(--spacing-lg);
}

.footer-brand,
.footer-links,
.footer-legal {
    flex: 1;
    min-width: 250px;
}

.footer-brand h3 {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-sm);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links h4,
.footer-legal h4 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
}

.footer-links li,
.footer-legal li {
    margin-bottom: var(--spacing-xs);
}

.footer-links a,
.footer-legal a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-legal a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-xl) 5%;
}

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

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

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

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

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

.service-details strong {
    color: var(--color-primary);
}

.btn-home {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--color-primary);
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    margin-top: var(--spacing-md);
    transition: all 0.3s ease;
}

.btn-home:hover {
    background: var(--color-secondary);
    transform: translateY(-3px);
}

.page-header {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-bg-dark) 100%);
    color: white;
    padding: var(--spacing-xl) 5%;
    text-align: center;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-sm);
}

.page-header p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
}

.content-section {
    padding: var(--spacing-xl) 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.content-section h2 {
    font-size: 2.25rem;
    color: var(--color-primary);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.content-section h3 {
    font-size: 1.75rem;
    color: var(--color-primary);
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
}

.content-section p,
.content-section li {
    margin-bottom: var(--spacing-sm);
    line-height: 1.8;
}

.content-section ul {
    margin-left: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.contact-block {
    flex: 1;
    min-width: 300px;
    background: var(--color-bg-light);
    padding: var(--spacing-md);
    border-radius: 4px;
}

.contact-block h3 {
    margin-top: 0;
}

.contact-block p {
    margin-bottom: var(--spacing-xs);
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

    .card-large,
    .card-medium,
    .card-small {
        width: 100%;
    }

    .form-container-asymmetric {
        flex-direction: column;
    }

    .form-visual,
    .form-content {
        width: 100%;
    }

    .form-visual {
        height: 300px;
    }

    .intro-block-irregular {
        flex-direction: column;
    }

    .intro-left,
    .intro-right-offset {
        width: 100%;
        margin-left: 0;
    }

    .intro-left {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.875rem;
    }

    .hero-content-offset {
        padding: var(--spacing-md);
        margin-left: 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-image-overlay {
        width: 100%;
        opacity: 0.3;
    }

    .footer-content-irregular {
        flex-direction: column;
    }

    .stat-number {
        font-size: 3rem;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }
}