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

:root {
    --primary-color: #2c3e50;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f6f3;
    --white: #ffffff;
}

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.ad-disclosure {
    font-size: 0.7rem;
    color: var(--text-light);
    font-style: italic;
    max-width: 180px;
    line-height: 1.3;
}

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

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

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

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

.hero-section {
    min-height: 100vh;
    padding-top: 80px;
    display: flex;
    position: relative;
    overflow: hidden;
}

.hero-content {
    width: 48%;
    padding: 8% 5% 5% 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.8rem;
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-image-wrapper {
    position: absolute;
    right: -5%;
    top: 15%;
    width: 58%;
    height: 75%;
    transform: rotate(-3deg);
    box-shadow: -20px 30px 60px rgba(0,0,0,0.15);
}

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

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
    align-self: flex-start;
}

.btn-primary:hover {
    background: #c49563;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 165, 116, 0.3);
}

.section-offset {
    padding: 7rem 5%;
    position: relative;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 5rem;
}

.service-card {
    width: calc(33.333% - 2rem);
    position: relative;
    background: var(--white);
    padding: 0;
    transition: transform 0.3s;
}

.service-card:nth-child(2) {
    transform: translateY(4rem);
}

.service-card:nth-child(4) {
    transform: translateY(-3rem);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card:nth-child(2):hover {
    transform: translateY(3rem);
}

.service-card:nth-child(4):hover {
    transform: translateY(-4rem);
}

.service-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background-color: var(--bg-light);
}

.service-content {
    padding: 2rem 1.8rem;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.service-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.7;
}

.service-price {
    font-size: 1.8rem;
    color: var(--accent-color);
    font-weight: 700;
    margin-top: 1.2rem;
}

.service-cta {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.7rem 1.8rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
}

.service-cta:hover {
    background: var(--accent-color);
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
}

.about-layout {
    display: flex;
    gap: 5rem;
    margin-top: 4rem;
    align-items: flex-start;
}

.about-text {
    width: 55%;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.05rem;
}

.about-image-block {
    width: 40%;
    position: relative;
    transform: translateY(-50px);
}

.about-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    box-shadow: 20px 20px 0 var(--accent-color);
    background-color: var(--bg-light);
}

.form-section {
    background: var(--bg-light);
    padding: 7rem 5%;
    position: relative;
}

.form-wrapper {
    max-width: 700px;
    margin: 3rem auto 0;
    background: var(--white);
    padding: 3.5rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    position: relative;
    transform: rotate(-1deg);
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-label {
    display: block;
    margin-bottom: 0.6rem;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-input,
.form-select {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 2px solid #e0e0e0;
    background: var(--white);
    font-size: 1rem;
    transition: border 0.3s;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
}

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

.contact-grid {
    display: flex;
    gap: 5rem;
    margin-top: 4rem;
}

.contact-info {
    width: 45%;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.contact-item p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
}

.contact-map {
    width: 50%;
    height: 450px;
    background: var(--bg-light);
    transform: translateY(-30px);
}

.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 4rem 5% 2rem;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-column {
    flex: 1;
}

.footer-title {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-links {
    list-style: none;
}

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-text {
    flex: 1;
    margin-right: 2rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-text a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

.btn-cookie {
    padding: 0.7rem 1.8rem;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}

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

.btn-accept:hover {
    background: #c49563;
}

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

.btn-reject:hover {
    background: var(--white);
    color: var(--primary-color);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 10rem 5% 5rem;
}

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

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

.legal-content p {
    margin-bottom: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
}

.legal-content ul {
    margin: 1.2rem 0 1.2rem 2rem;
    color: var(--text-light);
}

.legal-content li {
    margin-bottom: 0.8rem;
}

.thanks-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5%;
    background: var(--bg-light);
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background: var(--white);
    padding: 5rem 4rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.thanks-icon {
    font-size: 5rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
}

.thanks-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.disclaimer-box {
    background: var(--bg-light);
    padding: 2rem;
    margin: 3rem 0;
    border-left: 4px solid var(--accent-color);
}

.disclaimer-box p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

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

    .hero-section {
        flex-direction: column;
    }

    .hero-content {
        width: 100%;
        padding: 5%;
    }

    .hero-image-wrapper {
        position: relative;
        width: 100%;
        right: 0;
        top: 0;
        transform: none;
    }

    .service-card {
        width: 100%;
        transform: none !important;
    }

    .about-layout,
    .contact-grid {
        flex-direction: column;
    }

    .about-text,
    .about-image-block,
    .contact-info,
    .contact-map {
        width: 100%;
    }

    .cookie-banner {
        flex-direction: column;
        gap: 1rem;
    }

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