* {
    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: #2d3748;
    background-color: #ffffff;
}

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

.ad-disclosure {
    background-color: #fef3c7;
    color: #92400e;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid #fbbf24;
}

.main-nav {
    background-color: #1a202c;
    color: #ffffff;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

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

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

.nav-links a {
    color: #e2e8f0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 40px;
    align-items: stretch;
}

.hero-text-card {
    flex: 1;
    background-color: #ffffff;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-text-card h1 {
    font-size: 38px;
    line-height: 1.3;
    color: #1a202c;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-text-card p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 32px;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    background-color: #667eea;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s, transform 0.2s;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #5568d3;
    transform: translateY(-2px);
}

.hero-image-card {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

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

.intro-cards {
    padding: 80px 0;
    background-color: #f7fafc;
}

.card-grid-intro {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.intro-card {
    flex: 1;
    min-width: 280px;
    padding: 36px;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.intro-card h3 {
    font-size: 22px;
    color: #1a202c;
    margin-bottom: 16px;
    font-weight: 700;
}

.intro-card p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

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

.section-header-card {
    text-align: center;
    margin-bottom: 56px;
    background-color: #edf2f7;
    padding: 40px;
    border-radius: 10px;
}

.section-header-card h2 {
    font-size: 36px;
    color: #1a202c;
    margin-bottom: 12px;
    font-weight: 800;
}

.section-header-card p {
    font-size: 18px;
    color: #718096;
}

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

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

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

.service-card.selected {
    border: 3px solid #667eea;
}

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

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

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

.service-content h3 {
    font-size: 22px;
    color: #1a202c;
    margin-bottom: 16px;
    font-weight: 700;
}

.service-content p {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-price {
    font-size: 28px;
    color: #667eea;
    font-weight: 700;
    margin-bottom: 20px;
}

.select-service-btn {
    background-color: #667eea;
    color: #ffffff;
    border: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service-btn:hover {
    background-color: #5568d3;
}

.service-card.selected .select-service-btn {
    background-color: #48bb78;
}

.service-card.selected .select-service-btn:hover {
    background-color: #38a169;
}

.form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.form-card {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 48px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 32px;
    color: #1a202c;
    margin-bottom: 12px;
    font-weight: 700;
}

.form-header p {
    font-size: 16px;
    color: #718096;
}

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

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

.form-group label {
    font-size: 15px;
    color: #2d3748;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.submit-btn {
    background-color: #667eea;
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.submit-btn:hover {
    background-color: #5568d3;
    transform: translateY(-2px);
}

.trust-section {
    padding: 60px 0;
    background-color: #f7fafc;
}

.trust-grid {
    display: flex;
    gap: 32px;
    justify-content: space-around;
    flex-wrap: wrap;
}

.trust-card {
    text-align: center;
    padding: 32px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    flex: 1;
    min-width: 200px;
}

.trust-number {
    font-size: 42px;
    color: #667eea;
    font-weight: 800;
    margin-bottom: 8px;
}

.trust-label {
    font-size: 16px;
    color: #4a5568;
}

.main-footer {
    background-color: #1a202c;
    color: #e2e8f0;
    padding: 60px 0 20px;
}

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

.footer-column {
    flex: 1;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.footer-column a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

.footer-column p {
    color: #cbd5e0;
    font-size: 15px;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #2d3748;
    color: #a0aec0;
    font-size: 14px;
}

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-content a {
    color: #90cdf4;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cookie-btn.accept {
    background-color: #48bb78;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #38a169;
}

.cookie-btn.reject {
    background-color: #718096;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background-color: #4a5568;
}

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

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

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

.content-section {
    padding: 60px 0;
}

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

.content-card h2 {
    font-size: 28px;
    color: #1a202c;
    margin-bottom: 20px;
    font-weight: 700;
}

.content-card h3 {
    font-size: 22px;
    color: #2d3748;
    margin-bottom: 16px;
    margin-top: 28px;
    font-weight: 600;
}

.content-card p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 16px;
}

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

.content-card li {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 8px;
}

.about-grid {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.about-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 32px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.about-image-section {
    margin: 48px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0,0,0,0.1);
}

.about-image-section img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.contact-info-card {
    background-color: #f7fafc;
    border-radius: 10px;
    padding: 36px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.contact-info-card h3 {
    font-size: 22px;
    color: #1a202c;
    margin-bottom: 20px;
    font-weight: 700;
}

.info-item {
    margin-bottom: 20px;
}

.info-item strong {
    display: block;
    color: #2d3748;
    font-size: 15px;
    margin-bottom: 6px;
}

.info-item span {
    color: #4a5568;
    font-size: 16px;
}

.thanks-container {
    max-width: 700px;
    margin: 80px auto;
    padding: 0 20px;
}

.thanks-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 60px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.thanks-card h1 {
    font-size: 36px;
    color: #1a202c;
    margin-bottom: 20px;
    font-weight: 800;
}

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

.thanks-card .selected-service {
    font-size: 20px;
    color: #667eea;
    font-weight: 600;
    margin-top: 24px;
    padding: 16px;
    background-color: #edf2f7;
    border-radius: 8px;
}

.thanks-card a {
    display: inline-block;
    margin-top: 32px;
    background-color: #667eea;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s;
}

.thanks-card a:hover {
    background-color: #5568d3;
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
    }

    .nav-links {
        gap: 16px;
        font-size: 14px;
    }

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

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

    .service-card {
        min-width: 100%;
    }

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

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