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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: #ffd700;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #4caf50;
    color: white;
}

.btn-accept:hover {
    background: #45a049;
}

.btn-reject {
    background: #666;
    color: white;
}

.btn-reject:hover {
    background: #555;
}

.header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap;
    gap: 15px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #d4526e;
}

.ad-label {
    font-size: 11px;
    color: #666;
    background: #f0f0f0;
    padding: 4px 10px;
    border-radius: 3px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #d4526e;
}

.hero {
    position: relative;
    height: 600px;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #e8d5d8;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 82, 110, 0.85), rgba(138, 51, 88, 0.75));
    display: flex;
    align-items: center;
}

.hero-text {
    color: white;
    max-width: 600px;
}

.hero-text h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 20px;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #d4526e;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.intro-section {
    padding: 80px 0;
    background: #fafafa;
}

.intro-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.intro-card {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.intro-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.intro-card h3 {
    color: #d4526e;
    margin-bottom: 15px;
    font-size: 22px;
}

.services-section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 38px;
    color: #333;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: #666;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.service-image {
    width: 100%;
    height: 240px;
    background-size: cover;
    background-position: center;
    background-color: #e8d5d8;
}

.service-info {
    padding: 30px;
}

.service-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.service-info p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

.price {
    font-size: 26px;
    font-weight: 700;
    color: #d4526e;
    margin-bottom: 20px;
}

.select-service {
    width: 100%;
    background: #d4526e;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service:hover {
    background: #c23d5a;
}

.form-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.form-wrapper {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

.form-card {
    flex: 1;
    background: white;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.form-card h2 {
    margin-bottom: 15px;
    color: #333;
    font-size: 32px;
}

.form-description {
    color: #666;
    margin-bottom: 30px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4526e;
}

.form-group input[readonly] {
    background: #f5f5f5;
    cursor: not-allowed;
}

.submit-button {
    width: 100%;
    background: #d4526e;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: #c23d5a;
}

.form-image {
    flex: 1;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    background-color: #e8d5d8;
}

.why-us-section {
    padding: 80px 0;
}

.why-us-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #333;
}

.benefits-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.benefit-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    display: flex;
    gap: 20px;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: #d4526e;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.benefit-item h3 {
    margin-bottom: 10px;
    color: #333;
    font-size: 20px;
}

.benefit-item p {
    color: #666;
    line-height: 1.7;
}

.footer {
    background: #2c2c2c;
    color: #ccc;
    padding: 60px 0 20px;
}

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

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

.footer-col h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 18px;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #d4526e;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
}

.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #d4526e, #8a3358);
    padding: 40px 20px;
}

.thanks-card {
    background: white;
    padding: 60px 50px;
    border-radius: 8px;
    text-align: center;
    max-width: 600px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #4caf50;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 40px;
    margin: 0 auto 30px;
}

.thanks-card h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.thanks-card p {
    font-size: 18px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.7;
}

.thanks-card .highlight {
    color: #d4526e;
    font-weight: 600;
}

.back-button {
    display: inline-block;
    background: #d4526e;
    color: white;
    padding: 14px 40px;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-button:hover {
    background: #c23d5a;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .form-wrapper {
        flex-direction: column;
    }

    .form-image {
        min-height: 300px;
    }

    .benefit-item {
        flex: 1 1 100%;
    }

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

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