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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    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;
    min-width: 250px;
}

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

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

.btn-accept {
    background: #2ecc71;
    color: #fff;
}

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

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

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

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

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

.logo a {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    background: #ecf0f1;
    padding: 4px 12px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hero-section {
    margin-top: -1px;
}

.hero-background {
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 500px;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.55);
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 700px;
    color: #fff;
    padding: 60px 0;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background: #3498db;
    color: #fff;
    padding: 14px 36px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

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

.intro-card {
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.intro-card h2 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 28px;
    color: #2c3e50;
}

.intro-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.intro-card p:last-child {
    margin-bottom: 0;
}

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

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

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

.service-card {
    flex: 1 1 calc(50% - 15px);
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.service-card.featured-card {
    flex: 1 1 100%;
    display: flex;
    flex-direction: row;
}

.service-card.featured-card .service-image {
    flex: 1;
    min-height: 350px;
}

.service-card.featured-card .service-content {
    flex: 1;
}

.service-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

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

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

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

.service-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 20px;
    padding: 16px 0;
    border-top: 1px solid #ecf0f1;
}

.price-label {
    font-size: 14px;
    color: #7f8c8d;
}

.price-amount {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
}

.price-period {
    font-size: 14px;
    color: #7f8c8d;
}

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

.select-service-btn:hover {
    background: #2980b9;
    transform: translateY(-1px);
}

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

.benefits-wrapper {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.benefit-card {
    flex: 1 1 calc(33.333% - 20px);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 40px;
    border-radius: 12px;
    min-width: 250px;
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
}

.benefit-card p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.95;
}

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

.form-card {
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.selected-service-display {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 30px;
}

.selected-service-display strong {
    color: #3498db;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d0d7de;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.submit-button {
    background: #2ecc71;
    color: #fff;
    border: none;
    padding: 14px 40px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: #27ae60;
    transform: translateY(-1px);
}

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

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

.testimonials-wrapper {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1 1 calc(33.333% - 20px);
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #3498db;
    min-width: 250px;
}

.testimonial-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    color: #2c3e50;
    margin-bottom: 4px;
}

.testimonial-author span {
    font-size: 14px;
    color: #7f8c8d;
}

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

.disclaimer-card {
    background: #fff;
    padding: 30px 40px;
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
}

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

.disclaimer-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #5a6c7d;
}

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

.footer-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

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

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    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 {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
}

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

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

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

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

.page-content {
    padding: 80px 0;
}

.content-card {
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    max-width: 900px;
    margin: 0 auto;
}

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

.content-card h2:first-child {
    margin-top: 0;
}

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

.content-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 16px;
}

.content-card ul,
.content-card ol {
    margin-bottom: 20px;
    margin-left: 24px;
}

.content-card li {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 8px;
}

.contact-info-card {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    margin-bottom: 30px;
}

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

.contact-detail {
    margin-bottom: 20px;
}

.contact-detail strong {
    display: block;
    color: #2c3e50;
    margin-bottom: 6px;
    font-size: 15px;
}

.contact-detail span {
    color: #5a6c7d;
    font-size: 15px;
}

.about-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.about-card {
    flex: 1 1 calc(50% - 15px);
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    min-width: 280px;
}

.about-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.about-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #5a6c7d;
}

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

.thanks-card {
    background: #fff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

.back-button {
    display: inline-block;
    margin-top: 30px;
    background: #3498db;
    color: #fff;
    padding: 14px 36px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-button:hover {
    background: #2980b9;
}

@media (max-width: 992px) {
    .service-card {
        flex: 1 1 100%;
    }

    .service-card.featured-card {
        flex-direction: column;
    }

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

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

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

@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav a {
        padding: 16px 20px;
        border-bottom: 1px solid #ecf0f1;
    }

    .nav-toggle {
        display: flex;
    }

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

    .hero-content p {
        font-size: 18px;
    }

    .intro-card,
    .form-card,
    .content-card {
        padding: 30px;
    }

    .section-title {
        font-size: 32px;
    }

    .footer-grid {
        flex-direction: column;
        gap: 30px;
    }
}
