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

:root {
    --primary: #2d1b4e;
    --secondary: #d4a574;
    --accent: #e84855;
    --dark: #1a1423;
    --light: #f8f5f2;
    --gray: #5a5766;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

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

.ad-label {
    font-size: 0.75rem;
    color: var(--gray);
    padding: 4px 12px;
    background: #f0ede8;
    border-radius: 4px;
    margin-left: 20px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

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

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

.hero {
    margin-top: 80px;
    min-height: 75vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
}

.hero-text {
    flex: 1;
    z-index: 2;
    transform: translateX(-30px);
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    color: var(--primary);
    margin-bottom: 30px;
    font-weight: 800;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 40px;
    max-width: 480px;
}

.hero-image {
    flex: 1;
    position: relative;
    transform: translateX(50px) rotate(2deg);
}

.hero-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 30px 30px 0 var(--secondary);
}

.cta-primary {
    display: inline-block;
    padding: 16px 45px;
    background: var(--accent);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    background: #c73d48;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(232, 72, 85, 0.3);
}

.services-grid {
    padding: 120px 40px;
    background: white;
}

.section-title {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 70px;
    text-align: left;
    font-weight: 700;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background: var(--light);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s;
    position: relative;
}

.service-card:nth-child(odd) {
    transform: translateY(-20px);
}

.service-card:nth-child(even) {
    transform: translateY(20px);
}

.service-card:hover {
    transform: translateY(0) scale(1.02);
}

.service-image {
    width: 100%;
    height: 240px;
    background: var(--secondary);
    position: relative;
}

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

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.service-content p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

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

.select-service {
    width: 100%;
    padding: 12px 20px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.about-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, #2d1b4e 0%, #1a1423 100%);
    color: white;
    position: relative;
}

.about-content {
    display: flex;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    flex: 1.2;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.9;
}

.about-image {
    flex: 1;
    position: relative;
    transform: rotate(-3deg);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

.form-section {
    padding: 100px 40px;
    background: var(--light);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transform: rotate(-1deg);
}

.form-container h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 40px;
    text-align: center;
}

.form-group {
    margin-bottom: 25px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0dbd4;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

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

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

footer {
    background: var(--dark);
    color: white;
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--secondary);
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

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

.footer-column a:hover {
    color: var(--secondary);
}

.footer-column p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 20, 35, 0.98);
    color: white;
    padding: 25px 40px;
    z-index: 2000;
    display: none;
    box-shadow: 0 -5px 30px rgba(0,0,0,0.3);
}

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

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

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

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

.cookie-reject {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

.contact-section {
    padding: 100px 40px;
    background: white;
}

.contact-grid {
    display: flex;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
    background: var(--light);
    padding: 50px;
    border-radius: 15px;
    transform: translateY(-30px);
}

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

.contact-item {
    margin-bottom: 35px;
}

.contact-item h3 {
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

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

.map-container {
    flex: 1;
    height: 500px;
    background: var(--secondary);
    border-radius: 15px;
    transform: translateY(30px) rotate(2deg);
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.legal-page {
    padding: 140px 40px 80px;
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-page p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--gray);
}

.legal-page ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-page ul li {
    margin-bottom: 10px;
    color: var(--gray);
}

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 40px;
}

.thanks-content {
    text-align: center;
    max-width: 600px;
}

.thanks-content h1 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.thanks-content p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

.disclaimer {
    background: #fef8f3;
    border-left: 4px solid var(--secondary);
    padding: 25px 30px;
    margin: 60px 0;
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        padding: 60px 20px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-image {
        transform: none;
    }

    nav ul {
        flex-direction: column;
        gap: 15px;
    }

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

    .service-card:nth-child(odd),
    .service-card:nth-child(even) {
        transform: none;
    }

    .about-content {
        flex-direction: column;
        gap: 40px;
    }

    .contact-grid {
        flex-direction: column;
        gap: 40px;
    }

    .form-container {
        padding: 30px 20px;
    }

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