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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #f8f9fa;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    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;
    min-width: 300px;
}

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

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

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

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

.btn-reject {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

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

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 900;
}

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

.brand {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #3498db;
}

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    font-style: italic;
    padding-left: 20px;
    border-left: 1px solid #e0e0e0;
}

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

.hero-image {
    height: 520px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #34495e;
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(41, 128, 185, 0.88), rgba(142, 68, 173, 0.85));
    padding: 50px;
    max-width: 700px;
    text-align: center;
    color: white;
}

.hero-overlay h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 18px;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 19px;
    line-height: 1.7;
}

.intro-section {
    margin-bottom: 70px;
    padding: 50px 0;
}

.intro-card {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    max-width: 900px;
    margin: 0 auto;
}

.intro-card h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.intro-card p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #555;
}

.services-grid-section {
    padding: 60px 0;
    background-color: #f1f3f5;
}

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

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

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1 1 calc(33.333% - 24px);
    min-width: 300px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
}

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

.service-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #95a5a6;
}

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

.service-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-content h3 {
    font-size: 21px;
    margin-bottom: 14px;
    color: #2c3e50;
}

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

.service-price {
    font-size: 26px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 18px;
}

.btn-select-service {
    padding: 12px 24px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select-service:hover {
    background-color: #2980b9;
}

.btn-select-service.selected {
    background-color: #27ae60;
}

.benefits-section {
    padding: 70px 0;
    background-color: #ffffff;
}

.benefits-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.benefit-card {
    flex: 1 1 300px;
    max-width: 360px;
    padding: 36px;
    background-color: #ecf0f1;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #2c3e50;
}

.benefit-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.contact-form-section {
    padding: 70px 0;
    background-color: #f8f9fa;
}

.form-wrapper {
    max-width: 650px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.form-wrapper h2 {
    font-size: 30px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.form-wrapper > p {
    margin-bottom: 32px;
    color: #666;
    font-size: 16px;
}

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

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

.form-row label {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
}

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

.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-color: #3498db;
}

.form-row input[readonly] {
    background-color: #f1f3f5;
    color: #7f8c8d;
}

.btn-submit {
    padding: 14px 32px;
    background-color: #27ae60;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

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

.btn-submit:disabled {
    background-color: #95a5a6;
    cursor: not-allowed;
}

.disclaimer-section {
    padding: 40px 0;
    background-color: #ecf0f1;
}

.disclaimer-text {
    font-size: 13px;
    line-height: 1.7;
    color: #7f8c8d;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

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

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

.footer-column {
    flex: 1 1 250px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.7;
    color: #bdc3c7;
}

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

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

.footer-column ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #3498db;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #95a5a6;
}

.page-header {
    padding: 60px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 12px;
}

.page-header p {
    font-size: 18px;
}

.content-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 18px;
    color: #2c3e50;
}

.content-wrapper h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 14px;
    color: #34495e;
}

.content-wrapper p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #555;
}

.content-wrapper ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.content-wrapper ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #555;
}

.contact-info-card {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.contact-info-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.contact-info-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 10px;
}

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

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

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

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

.thanks-card .service-name {
    font-weight: 700;
    color: #3498db;
}

.thanks-card a {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 28px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.thanks-card a:hover {
    background-color: #2980b9;
}

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 32px;
    }

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

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

    .nav-links {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .ad-disclosure {
        padding-left: 0;
        border-left: none;
        padding-top: 12px;
        border-top: 1px solid #e0e0e0;
    }

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

    .benefits-layout {
        flex-direction: column;
    }

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

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