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

:root {
    --primary: #1a1a2e;
    --secondary: #16213e;
    --accent: #c7a96b;
    --light: #f8f9fa;
    --dark: #0f0f1e;
    --text-primary: #2c3e50;
    --text-light: #7f8c8d;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.8;
    color: var(--text-primary);
    background: var(--light);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

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

header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(199, 169, 107, 0.2);
}

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

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

nav ul {
    display: flex;
    list-style: none;
    gap: 3rem;
}

nav a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 300;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

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

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--dark) 0%, var(--secondary) 100%);
    color: var(--light);
    padding: 8rem 5% 6rem;
}

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

.hero h1 {
    font-size: 4rem;
    font-weight: 200;
    line-height: 1.2;
    margin-bottom: 3rem;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 4rem;
    color: rgba(248, 249, 250, 0.85);
    line-height: 1.9;
}

.cta-primary {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    background: var(--accent);
    color: var(--dark);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
    transition: all 0.4s;
    border: none;
    cursor: pointer;
}

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

.section {
    padding: 8rem 0;
}

.section-light {
    background: var(--light);
}

.section-dark {
    background: var(--primary);
    color: var(--light);
}

.section-title {
    font-size: 3rem;
    font-weight: 200;
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 5rem;
    color: var(--text-light);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    margin-top: 4rem;
}

.service-item {
    display: flex;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0;
}

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

.service-content {
    flex: 1;
}

.service-visual {
    flex: 1;
    min-height: 350px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon {
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.3);
}

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

.service-description {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.service-price {
    font-size: 2.5rem;
    font-weight: 200;
    color: var(--accent);
    margin-bottom: 2rem;
}

.price-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 300;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 1px solid var(--accent);
    color: var(--accent);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    margin-top: 1.5rem;
}

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

.form-section {
    background: var(--secondary);
    padding: 8rem 0;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 4rem;
    backdrop-filter: blur(10px);
}

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

label {
    display: block;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: var(--light);
}

input,
select,
textarea {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid rgba(199, 169, 107, 0.3);
    background: rgba(255, 255, 255, 0.08);
    color: var(--light);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 1.5rem;
    background: var(--accent);
    color: var(--dark);
    border: none;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: #d4b77a;
}

.stats-section {
    display: flex;
    justify-content: space-around;
    padding: 6rem 0;
    background: var(--dark);
}

.stat-item {
    text-align: center;
}

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

.stat-label {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(248, 249, 250, 0.7);
    letter-spacing: 1px;
}

.about-content {
    display: flex;
    gap: 6rem;
    align-items: center;
    margin-bottom: 6rem;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    min-height: 500px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
}

.text-content {
    font-size: 1.15rem;
    line-height: 2;
    margin-bottom: 2rem;
    font-weight: 300;
}

.text-content strong {
    font-weight: 500;
    color: var(--primary);
}

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

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

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: var(--accent);
    letter-spacing: 1px;
}

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

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

.footer-section a {
    color: rgba(248, 249, 250, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 300;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(199, 169, 107, 0.2);
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(248, 249, 250, 0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: var(--light);
    padding: 2rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

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

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

.cookie-text {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

.cookie-btn {
    padding: 0.9rem 2rem;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.cookie-accept {
    background: var(--accent);
    color: var(--dark);
}

.cookie-reject {
    background: transparent;
    color: var(--light);
    border: 1px solid rgba(248, 249, 250, 0.3);
}

.cookie-accept:hover {
    background: #d4b77a;
}

.cookie-reject:hover {
    background: rgba(248, 249, 250, 0.1);
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    display: none;
}

.sticky-cta.visible {
    display: block;
}

.thanks-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 5%;
}

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

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

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

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

.legal-content h2 {
    font-size: 1.8rem;
    font-weight: 300;
    margin: 3rem 0 1.5rem;
    color: var(--primary);
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.legal-content ul {
    margin: 1.5rem 0 1.5rem 2rem;
    line-height: 1.9;
}

.legal-content li {
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 4rem;
}

.contact-item {
    padding: 3rem;
    background: rgba(199, 169, 107, 0.05);
    border-left: 3px solid var(--accent);
}

.contact-item h3 {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--primary);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s;
}

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

    .hero p {
        font-size: 1.1rem;
    }

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

    .section-subtitle {
        font-size: 1rem;
    }

    .service-item {
        flex-direction: column !important;
        gap: 2rem;
    }

    .service-visual {
        min-height: 250px;
        width: 100%;
    }

    .about-content {
        flex-direction: column;
        gap: 3rem;
    }

    .about-image {
        min-height: 300px;
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
        gap: 3rem;
    }

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

    .stats-section {
        flex-direction: column;
        gap: 3rem;
    }

    .hamburger {
        display: flex;
    }

    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
    }

    .form-container {
        padding: 2rem;
    }
}
