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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

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

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

.ad-disclosure {
    background-color: #f8f9fa;
    color: #666;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #e0e0e0;
}

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

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
}

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

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

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

.main-nav a:hover {
    color: #1a73e8;
}

.hero-section {
    background-color: #2c3e50;
    background-size: cover;
    background-position: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    padding: 80px 20px;
}

.hero-content {
    max-width: 700px;
}

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

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background-color: #1a73e8;
    color: #ffffff;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 18px;
    transition: background-color 0.3s, transform 0.2s;
}

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

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

.intro-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
}

.intro-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

.benefits-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

.benefit-card {
    flex: 1;
    min-width: 300px;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

.benefit-card img {
    width: 100%;
    height: 220px;
    display: block;
    background-color: #e0e0e0;
}

.benefit-card h3 {
    padding: 20px 20px 10px;
    font-size: 22px;
    color: #1a73e8;
}

.benefit-card p {
    padding: 0 20px 20px;
    color: #666;
    font-size: 16px;
}

.services-preview {
    padding: 100px 20px;
    background-color: #f8f9fa;
}

.services-preview h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
}

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

.service-item {
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    width: calc(33.333% - 20px);
    min-width: 280px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

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

.service-item p {
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-item .price {
    font-size: 28px;
    font-weight: 700;
    color: #1a73e8;
    margin-bottom: 20px;
}

.select-service {
    background-color: #1a73e8;
    color: #ffffff;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #1557b0;
}

.testimonials-section {
    padding: 80px 20px;
    background-color: #2c3e50;
    color: #ffffff;
}

.testimonials-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
}

.testimonial {
    background-color: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.testimonial p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial .author {
    text-align: right;
    opacity: 0.9;
    font-weight: 500;
}

.form-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

.form-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
    text-align: center;
}

.form-section > div > p {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.contact-form {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

.service-selection-display {
    background-color: #e3f2fd;
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-selection-display strong {
    color: #1a73e8;
}

#change-service {
    background-color: transparent;
    border: 1px solid #1a73e8;
    color: #1a73e8;
    padding: 5px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

#change-service:hover {
    background-color: #1a73e8;
    color: #ffffff;
}

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

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

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

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

.submit-button {
    background-color: #1a73e8;
    color: #ffffff;
    border: none;
    padding: 15px 50px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

.submit-button:hover {
    background-color: #1557b0;
}

.trust-section {
    padding: 100px 20px;
    background-color: #f8f9fa;
}

.trust-section .container {
    display: flex;
    gap: 60px;
    align-items: center;
}

.trust-section img {
    flex: 1;
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
    background-color: #e0e0e0;
}

.trust-content {
    flex: 1;
}

.trust-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.trust-content p {
    font-size: 17px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.7;
}

.cta-final {
    padding: 80px 20px;
    background-color: #1a73e8;
    color: #ffffff;
    text-align: center;
}

.cta-final h2 {
    font-size: 40px;
    margin-bottom: 15px;
}

.cta-final p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-button-large {
    display: inline-block;
    background-color: #ffffff;
    color: #1a73e8;
    padding: 18px 50px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    font-size: 20px;
    transition: transform 0.2s;
}

.cta-button-large:hover {
    transform: scale(1.05);
}

.site-footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 20px 20px;
}

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

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

.footer-col h3 {
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-col p,
.footer-col a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
}

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

.footer-disclaimer {
    background-color: rgba(0,0,0,0.2);
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.7;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 25px 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    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;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
}

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

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

.cookie-btn {
    padding: 10px 30px;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.cookie-btn.accept {
    background-color: #1a73e8;
    color: #ffffff;
}

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

.cookie-btn:hover {
    opacity: 0.8;
}

.page-header {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 20px;
    text-align: center;
}

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

.page-content {
    padding: 60px 20px;
}

.page-content h2 {
    font-size: 28px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.page-content h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #1a73e8;
}

.page-content p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #555;
}

.page-content ul,
.page-content ol {
    margin-bottom: 20px;
    margin-left: 30px;
    color: #555;
}

.page-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.contact-info {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

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

.contact-info p {
    margin-bottom: 10px;
    color: #555;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-detail {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
}

.service-detail h3 {
    font-size: 26px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.service-detail .service-price {
    font-size: 24px;
    color: #1a73e8;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-detail p {
    color: #666;
    line-height: 1.7;
}

.thanks-message {
    text-align: center;
    padding: 100px 20px;
}

.thanks-message h1 {
    font-size: 48px;
    color: #1a73e8;
    margin-bottom: 20px;
}

.thanks-message p {
    font-size: 20px;
    color: #555;
    margin-bottom: 30px;
}

.thanks-message a {
    display: inline-block;
    background-color: #1a73e8;
    color: #ffffff;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.thanks-message a:hover {
    background-color: #1557b0;
}

@media (max-width: 768px) {
    .site-header .container {
        flex-direction: column;
        gap: 15px;
    }

    .main-nav {
        gap: 20px;
        font-size: 14px;
    }

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

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

    .benefits-section .container {
        flex-direction: column;
    }

    .service-item {
        width: 100%;
    }

    .trust-section .container {
        flex-direction: column;
    }

    .trust-section img {
        max-width: 100%;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}