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

:root {
    --primary: #1a1a2e;
    --secondary: #16213e;
    --accent: #e94560;
    --light: #f1f1f1;
    --dark: #0f0f1e;
    --gray: #6c757d;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--primary);
    background: #fff;
}

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

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

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

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

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

.nav-links a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 500;
    transition: color 0.3s;
    font-size: 15px;
}

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

.ad-disclosure {
    font-size: 11px;
    color: var(--gray);
    padding: 5px 12px;
    background: #f8f9fa;
    border-radius: 4px;
}

.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--dark);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    padding: 80px 0;
    margin-left: 8%;
}

.hero h1 {
    font-size: 68px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #fff;
    font-weight: 800;
    letter-spacing: -2px;
}

.hero p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.85);
}

.hero-image {
    position: absolute;
    right: -5%;
    top: 10%;
    width: 55%;
    height: 80%;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    transform: rotate(3deg);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.cta-btn {
    display: inline-block;
    padding: 16px 38px;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.cta-btn:hover {
    background: #d63851;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(233, 69, 96, 0.3);
}

.section {
    padding: 100px 0;
}

.section-title {
    font-size: 48px;
    margin-bottom: 50px;
    font-weight: 700;
    letter-spacing: -1px;
}

.asymmetric-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    background: #fff;
    border-radius: 8px;
    padding: 45px 35px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.service-card:nth-child(1) {
    flex: 1 1 calc(60% - 15px);
    margin-top: 0;
}

.service-card:nth-child(2) {
    flex: 1 1 calc(40% - 15px);
    margin-top: 60px;
}

.service-card:nth-child(3) {
    flex: 1 1 calc(45% - 15px);
    margin-top: -30px;
}

.service-card:nth-child(4) {
    flex: 1 1 calc(55% - 15px);
    margin-top: 40px;
}

.service-card:nth-child(5) {
    flex: 1 1 calc(50% - 15px);
    margin-top: -50px;
}

.service-card:nth-child(6) {
    flex: 1 1 calc(50% - 15px);
    margin-top: 20px;
}

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

.service-card h3 {
    font-size: 28px;
    margin-bottom: 18px;
    color: var(--primary);
    font-weight: 700;
}

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 25px;
    flex-grow: 1;
}

.price {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent);
    margin-top: 15px;
}

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

.about-content {
    display: flex;
    gap: 80px;
    align-items: center;
}

.about-text {
    flex: 1;
    padding-right: 40px;
}

.about-text h2 {
    font-size: 52px;
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 1.2;
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 20px;
}

.about-image-wrapper {
    flex: 0 0 45%;
    position: relative;
}

.about-image {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: rotate(-2deg);
}

.form-section {
    background: var(--secondary);
    color: #fff;
    padding: 120px 0;
}

.form-section h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 60px;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.08);
    padding: 50px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 15px;
    transition: all 0.3s;
}

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

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

.submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.contact-info {
    background: var(--light);
    padding: 100px 0;
}

.info-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.info-card {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary);
}

.info-card p {
    color: var(--gray);
    line-height: 1.8;
}

footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 30px;
}

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

.footer-section {
    flex: 1;
    min-width: 220px;
}

.footer-section h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 18px;
}

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

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

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

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

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

.disclaimer {
    background: #f8f9fa;
    padding: 40px;
    border-left: 4px solid var(--accent);
    margin: 40px 0;
    border-radius: 6px;
}

.disclaimer p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 10px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary);
    color: #fff;
    padding: 25px;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    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: 30px;
    flex-wrap: wrap;
}

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

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

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

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

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

.cookie-reject {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

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

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--primary);
}

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

.legal-content p,
.legal-content li {
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 15px;
}

.legal-content ul,
.legal-content ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

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

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

.thanks-content p {
    font-size: 20px;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 35px;
}

@media (max-width: 1024px) {
    .hero h1 {
        font-size: 52px;
    }

    .hero-image {
        width: 50%;
        right: -3%;
    }

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

    .about-image-wrapper {
        flex: 1;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
    }

    .hero-content {
        margin-left: 0;
        padding: 50px 0;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero-image {
        position: relative;
        width: 100%;
        height: 400px;
        right: 0;
        top: 0;
        margin-top: 30px;
        transform: rotate(0);
    }

    .service-card {
        flex: 1 1 100% !important;
        margin-top: 0 !important;
    }

    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

    .section-title {
        font-size: 36px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}
