* {
    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-color: #fafafa;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

.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-buttons {
    display: flex;
    gap: 10px;
}

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

.btn-accept {
    background-color: #27ae60;
    color: #fff;
}

.btn-accept:hover {
    background-color: #229954;
}

.btn-reject {
    background-color: #95a5a6;
    color: #fff;
}

.btn-reject:hover {
    background-color: #7f8c8d;
}

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

.ad-disclosure {
    background-color: #f39c12;
    color: #fff;
    text-align: center;
    padding: 8px;
    font-size: 13px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #8e44ad;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

.nav-menu a:hover {
    color: #8e44ad;
}

.hero-section {
    margin-bottom: 60px;
}

.hero-image-wrapper {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #e8d5f2;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(142, 68, 173, 0.85), rgba(74, 35, 90, 0.75));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
    color: #fff;
}

.hero-overlay h1 {
    font-size: 48px;
    margin-bottom: 20px;
    max-width: 800px;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 700px;
    line-height: 1.5;
}

.hero-cta {
    display: inline-block;
    padding: 15px 40px;
    background-color: #fff;
    color: #8e44ad;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
}

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

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

.intro-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.intro-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
}

.intro-image {
    flex: 1;
    background-color: #f3e5f5;
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

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

.services-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    color: #666;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    width: calc(33.333% - 20px);
    min-width: 320px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-image {
    height: 240px;
    overflow: hidden;
    background-color: #e8d5f2;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #8e44ad;
}

.service-content p {
    font-size: 15px;
    margin-bottom: 20px;
    color: #666;
    line-height: 1.5;
}

.service-price {
    font-size: 22px;
    font-weight: bold;
    color: #27ae60;
    margin-bottom: 15px;
}

.service-select {
    width: 100%;
    padding: 12px 20px;
    background-color: #8e44ad;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.service-select:hover {
    background-color: #7d3c98;
}

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

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    background-color: #f9f9f9;
    border-radius: 10px;
}

.form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #2c3e50;
    text-align: center;
}

.form-wrapper > p {
    text-align: center;
    margin-bottom: 30px;
    color: #666;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

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

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

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

.submit-btn {
    padding: 15px 30px;
    background-color: #27ae60;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #229954;
}

.trust-section {
    padding: 80px 0;
    background-color: #f4f1f8;
}

.trust-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #2c3e50;
}

.trust-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.trust-card {
    background-color: #fff;
    padding: 35px;
    border-radius: 10px;
    flex: 1;
    max-width: 350px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.trust-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #8e44ad;
}

.trust-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 50px 0 30px;
}

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

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

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

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

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

.disclaimer {
    border-top: 1px solid #34495e;
    padding-top: 30px;
    margin-top: 20px;
}

.disclaimer p {
    font-size: 13px;
    color: #bdc3c7;
    line-height: 1.6;
}

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

.thanks-box {
    background-color: #fff;
    padding: 60px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 600px;
}

.thanks-box h1 {
    font-size: 40px;
    color: #27ae60;
    margin-bottom: 20px;
}

.thanks-box p {
    font-size: 18px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.thanks-box .service-info {
    background-color: #f0f0f0;
    padding: 20px;
    border-radius: 6px;
    margin: 30px 0;
}

.thanks-box .service-info strong {
    color: #8e44ad;
}

.back-home {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 30px;
    background-color: #8e44ad;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.back-home:hover {
    background-color: #7d3c98;
}

@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 15px;
    }

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

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

    .intro-grid {
        flex-direction: column;
    }

    .service-card {
        width: 100%;
    }

    .trust-grid {
        flex-direction: column;
    }

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