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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background: #ffffff;
}

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

.header {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #c53fa6;
}

.main-nav {
    display: flex;
    gap: 2.5rem;
}

.main-nav a {
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #c53fa6;
}

.ad-label {
    font-size: 0.8rem;
    color: #718096;
    border: 1px solid #cbd5e0;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    background: #f7fafc;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: stretch;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 6rem;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.hero-left h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.8rem;
    color: #1a202c;
    font-weight: 800;
}

.hero-left p {
    font-size: 1.3rem;
    color: #4a5568;
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.cta-hero {
    display: inline-block;
    background: #c53fa6;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background 0.3s, transform 0.2s;
    align-self: flex-start;
}

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

.hero-right {
    flex: 1;
    background: #e2e8f0;
    position: relative;
    overflow: hidden;
}

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

.intro-split {
    display: flex;
    align-items: center;
    min-height: 70vh;
}

.intro-split.reverse {
    flex-direction: row-reverse;
}

.intro-image {
    flex: 1;
    background: #cbd5e0;
    min-height: 600px;
    position: relative;
}

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

.intro-text {
    flex: 1;
    padding: 5rem 6rem;
}

.intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a202c;
    font-weight: 700;
}

.intro-text p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
    line-height: 1.8;
}

.services-main {
    padding: 6rem 3rem;
    background: #ffffff;
}

.services-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.services-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
    color: #1a202c;
    font-weight: 700;
}

.services-header p {
    font-size: 1.2rem;
    color: #718096;
}

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

.service-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 400px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s;
}

.service-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.service-image {
    height: 280px;
    background: #cbd5e0;
    position: relative;
}

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

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a202c;
    font-weight: 600;
}

.service-content p {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #c53fa6;
    margin-bottom: 1.5rem;
}

.btn-select {
    width: 100%;
    background: #1a202c;
    color: #ffffff;
    padding: 1rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select:hover {
    background: #2d3748;
}

.form-split {
    display: flex;
    align-items: stretch;
    min-height: 80vh;
}

.form-container {
    flex: 1;
    padding: 5rem 6rem;
    background: #f7fafc;
}

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
    font-weight: 700;
}

.form-subtitle {
    font-size: 1.1rem;
    color: #718096;
    margin-bottom: 3rem;
}

.main-form {
    max-width: 550px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 500;
    color: #2d3748;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    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: #c53fa6;
}

.btn-submit {
    width: 100%;
    background: #c53fa6;
    color: #ffffff;
    padding: 1.1rem;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

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

.form-visual {
    flex: 1;
    background: #cbd5e0;
    position: relative;
}

.form-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.benefits-split {
    display: flex;
    align-items: center;
    min-height: 65vh;
    background: #ffffff;
}

.benefits-split.reverse {
    flex-direction: row-reverse;
}

.benefits-image {
    flex: 1;
    background: #cbd5e0;
    min-height: 500px;
}

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

.benefits-text {
    flex: 1;
    padding: 4rem 6rem;
}

.benefits-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: #1a202c;
    font-weight: 700;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    font-size: 1.15rem;
    padding: 1rem 0;
    padding-left: 2rem;
    color: #4a5568;
    position: relative;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #c53fa6;
    font-weight: 700;
    font-size: 1.4rem;
}

.disclaimer-section {
    background: #edf2f7;
    padding: 3rem 3rem;
}

.disclaimer-content {
    max-width: 1100px;
    margin: 0 auto;
}

.disclaimer-text {
    font-size: 0.95rem;
    color: #718096;
    line-height: 1.7;
    text-align: center;
}

.footer {
    background: #1a202c;
    color: #cbd5e0;
    padding: 4rem 3rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 3rem;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
}

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-col p {
    color: #a0aec0;
    font-size: 0.95rem;
    line-height: 1.7;
}

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

.footer-col ul li {
    margin-bottom: 0.7rem;
}

.footer-col ul li a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #c53fa6;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #2d3748;
}

.footer-bottom p {
    color: #718096;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2d3748;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

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

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

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

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

.btn-cookie {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-cookie.accept {
    background: #c53fa6;
    color: #ffffff;
}

.btn-cookie.accept:hover {
    background: #a82e8a;
}

.btn-cookie.reject {
    background: #4a5568;
    color: #ffffff;
}

.btn-cookie.reject:hover {
    background: #2d3748;
}

.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

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

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
    font-weight: 700;
}

.thanks-content p {
    font-size: 1.3rem;
    color: #4a5568;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.thanks-content .service-info {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 4px solid #c53fa6;
}

.thanks-content .service-info strong {
    color: #c53fa6;
}

.thanks-content a {
    display: inline-block;
    margin-top: 2rem;
    background: #c53fa6;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
}

.thanks-content a:hover {
    background: #a82e8a;
    transform: translateY(-2px);
}

.page-header {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    padding: 4rem 3rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.8rem;
    color: #1a202c;
    font-weight: 700;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 3rem;
}

.page-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    color: #1a202c;
    font-weight: 600;
}

.page-content p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 1.3rem;
    line-height: 1.8;
}

.page-content ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.page-content ul li {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.contact-split {
    display: flex;
    min-height: 70vh;
}

.contact-info {
    flex: 1;
    background: #1a202c;
    color: #ffffff;
    padding: 5rem 4rem;
}

.contact-info h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.contact-details {
    margin-top: 3rem;
}

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

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #c53fa6;
    font-weight: 600;
}

.contact-item p {
    font-size: 1.1rem;
    color: #cbd5e0;
    line-height: 1.7;
}

.contact-visual {
    flex: 1;
    background: #cbd5e0;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    padding: 5rem 3rem;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
    font-weight: 700;
}

.about-hero p {
    font-size: 1.3rem;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto;
}

.about-split {
    display: flex;
    align-items: center;
    min-height: 65vh;
}

.about-image {
    flex: 1;
    background: #cbd5e0;
    min-height: 500px;
}

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

.about-text {
    flex: 1;
    padding: 4rem 5rem;
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.8rem;
    color: #1a202c;
    font-weight: 700;
}

.about-text p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.services-page-header {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    padding: 4rem 3rem;
    text-align: center;
}

.services-page-header h1 {
    font-size: 2.8rem;
    color: #1a202c;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.services-page-header p {
    font-size: 1.2rem;
    color: #718096;
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .form-split,
    .benefits-split,
    .contact-split,
    .about-split {
        flex-direction: column;
    }

    .hero-left,
    .intro-text,
    .form-container,
    .benefits-text,
    .contact-info,
    .about-text {
        padding: 3rem 2rem;
    }

    .hero-left h1 {
        font-size: 2.2rem;
    }

    .service-card {
        min-width: 100%;
    }

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

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

    .main-nav {
        display: none;
    }
}