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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    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-content a {
    color: #7fbc8c;
    text-decoration: underline;
}

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

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

.btn-accept {
    background: #7fbc8c;
    color: #ffffff;
}

.btn-accept:hover {
    background: #6ca87a;
}

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

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

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

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
}

.nav-links {
    display: flex;
    gap: 32px;
}

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

.nav-links a:hover {
    color: #27ae60;
}

.ad-notice {
    font-size: 12px;
    color: #7f8c8d;
    font-style: italic;
}

.hero-section {
    width: 100%;
}

.hero-image {
    width: 100%;
    height: 600px;
    background-size: cover;
    background-position: center;
    background-color: #34495e;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.85), rgba(44, 62, 80, 0.75));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 24px;
}

.hero-overlay h1 {
    color: #ffffff;
    font-size: 48px;
    margin-bottom: 16px;
    max-width: 800px;
    font-weight: 700;
}

.hero-overlay p {
    color: #ecf0f1;
    font-size: 20px;
    margin-bottom: 32px;
    max-width: 600px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #ffffff;
    color: #27ae60;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #ecf0f1;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.intro-section {
    background: #f8f9fa;
    padding: 80px 24px;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.intro-content h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 24px;
    text-align: center;
}

.intro-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 16px;
}

.services-preview {
    padding: 80px 24px;
    background: #ffffff;
}

.section-header-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}

.section-header-centered h2 {
    font-size: 40px;
    color: #2c3e50;
    margin-bottom: 12px;
}

.section-header-centered p {
    font-size: 18px;
    color: #7f8c8d;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

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

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

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

.service-card h3 {
    font-size: 22px;
    color: #2c3e50;
    margin: 20px 20px 12px;
}

.service-card p {
    font-size: 15px;
    color: #555;
    margin: 0 20px 16px;
    flex: 1;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
    margin: 0 20px 16px;
}

.btn-select-service {
    margin: 0 20px 20px;
    padding: 12px 24px;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-select-service:hover {
    background: #229954;
}

.why-section {
    background: #ecf0f1;
    padding: 80px 24px;
}

.why-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 48px;
    align-items: center;
}

.why-text {
    flex: 1;
}

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

.why-text p {
    font-size: 17px;
    color: #34495e;
    line-height: 1.8;
    margin-bottom: 16px;
}

.why-image {
    flex: 1;
}

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

.form-section {
    background: #ffffff;
    padding: 80px 24px;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 12px;
    text-align: center;
}

.form-container > p {
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 32px;
    font-size: 16px;
}

.selected-service-info {
    background: #d5f4e6;
    padding: 16px;
    border-radius: 4px;
    margin-bottom: 24px;
    color: #27ae60;
    font-size: 16px;
}

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

.disclaimer-section {
    background: #f8f9fa;
    padding: 48px 24px;
}

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

.disclaimer-content h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 12px;
}

.disclaimer-content p {
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.6;
}

.main-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 48px 24px 24px;
}

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

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #7fbc8c;
}

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

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

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

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

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

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

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

.thanks-container {
    max-width: 700px;
    margin: 80px auto;
    padding: 48px 24px;
    text-align: center;
}

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

.thanks-container p {
    font-size: 18px;
    color: #34495e;
    line-height: 1.8;
    margin-bottom: 16px;
}

.thanks-container a {
    display: inline-block;
    margin-top: 24px;
    padding: 14px 32px;
    background: #27ae60;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.thanks-container a:hover {
    background: #229954;
}

.page-header {
    background: linear-gradient(135deg, #27ae60, #2c3e50);
    padding: 80px 24px;
    text-align: center;
    color: #ffffff;
}

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

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

.page-content {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 24px;
}

.page-content h2 {
    font-size: 32px;
    color: #2c3e50;
    margin: 40px 0 16px;
}

.page-content h3 {
    font-size: 24px;
    color: #34495e;
    margin: 32px 0 12px;
}

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

.page-content ul {
    margin: 16px 0 16px 24px;
    line-height: 1.8;
}

.page-content ul li {
    margin-bottom: 8px;
    color: #555;
}

.contact-info {
    background: #f8f9fa;
    padding: 32px;
    border-radius: 8px;
    margin: 32px 0;
}

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

.contact-info p {
    margin-bottom: 12px;
    color: #34495e;
}

.contact-info strong {
    color: #27ae60;
}

@media (max-width: 968px) {
    .nav-links {
        gap: 16px;
    }

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

    .service-card {
        width: calc(50% - 16px);
    }

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

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

@media (max-width: 640px) {
    .nav-container {
        flex-direction: column;
        gap: 12px;
    }

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

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

    .service-card {
        width: 100%;
    }

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