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

.header {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.ad-notice {
    font-size: 12px;
    color: #7f8c8d;
    padding: 4px 12px;
    background: #ecf0f1;
    border-radius: 4px;
}

.nav {
    display: flex;
    gap: 28px;
}

.nav a {
    color: #34495e;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

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

.hero {
    position: relative;
    height: 520px;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.85), rgba(41, 128, 185, 0.75));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

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

.hero-overlay p {
    color: #fff;
    font-size: 20px;
    max-width: 600px;
}

.intro-section {
    padding: 64px 0;
    background: #fff;
}

.intro-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

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

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

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

.cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    justify-content: center;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    width: calc(33.333% - 20px);
    min-width: 300px;
    transition: transform 0.2s, box-shadow 0.2s;
}

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

.card-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #ecf0f1;
}

.card-content {
    padding: 24px;
}

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

.card-content p {
    color: #555;
    margin-bottom: 16px;
    line-height: 1.6;
}

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

.btn-select {
    width: 100%;
    padding: 12px 24px;
    background: #3498db;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

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

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

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

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

.form-card > p {
    text-align: center;
    margin-bottom: 32px;
    color: #555;
}

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

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

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

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

.btn-primary {
    padding: 12px 32px;
    background: #3498db;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-primary:hover {
    background: #2980b9;
}

.btn-large {
    width: 100%;
    padding: 16px;
    font-size: 18px;
}

.btn-secondary {
    padding: 12px 32px;
    background: #95a5a6;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
    display: inline-block;
}

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

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

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

.benefit-card {
    background: #fff;
    padding: 32px;
    border-radius: 12px;
    width: calc(50% - 12px);
    min-width: 280px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

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

.benefit-card p {
    color: #555;
    line-height: 1.6;
}

.disclaimer-section {
    padding: 48px 0;
    background: #fff;
}

.disclaimer-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 32px;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 6px;
}

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

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

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

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

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

.footer-col p {
    color: #bdc3c7;
    font-size: 14px;
}

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

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

.footer-col ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #fff;
    padding: 20px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

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

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

.page-hero {
    background: linear-gradient(135deg, #3498db, #2980b9);
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

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

.page-hero p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

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

.about-intro-card {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 64px;
    flex-wrap: wrap;
}

.about-image {
    flex: 1;
    min-width: 300px;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    background-color: #ecf0f1;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

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

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

.values-section {
    margin-bottom: 64px;
}

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

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

.value-card {
    background: #fff;
    padding: 28px;
    border-radius: 12px;
    flex: 1;
    min-width: 250px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

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

.value-card p {
    color: #555;
    line-height: 1.6;
}

.story-section {
    margin-bottom: 64px;
}

.story-section h2 {
    font-size: 32px;
    margin-bottom: 24px;
    text-align: center;
    color: #2c3e50;
}

.story-card {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

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

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

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

.team-card {
    background: #fff;
    padding: 28px;
    border-radius: 12px;
    flex: 1;
    min-width: 280px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

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

.team-card p {
    color: #555;
    line-height: 1.6;
}

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

.cta-card-large {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.cta-card-large h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.cta-card-large p {
    font-size: 18px;
    margin-bottom: 28px;
    color: #555;
}

.services-detail {
    padding: 80px 0;
}

.service-detail-card {
    display: flex;
    gap: 48px;
    align-items: center;
    margin-bottom: 64px;
    flex-wrap: wrap;
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    min-width: 320px;
    height: 350px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    background-color: #ecf0f1;
}

.service-detail-content {
    flex: 1;
    min-width: 320px;
}

.service-detail-content h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #2c3e50;
}

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

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: #555;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.price-large {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

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

.contact-grid {
    display: flex;
    gap: 48px;
    align-items: stretch;
    flex-wrap: wrap;
}

.contact-info-card {
    flex: 1;
    min-width: 320px;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.contact-info-card h2 {
    font-size: 28px;
    margin-bottom: 32px;
    color: #2c3e50;
}

.contact-item {
    margin-bottom: 28px;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.contact-item p {
    color: #555;
    line-height: 1.6;
}

.contact-note {
    margin-top: 32px;
    padding: 20px;
    background: #ecf0f1;
    border-radius: 8px;
}

.contact-note p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.contact-image-card {
    flex: 1;
    min-width: 320px;
    height: 450px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    background-color: #ecf0f1;
}

.map-section {
    padding: 48px 0 80px;
}

.map-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
    color: #2c3e50;
}

.map-info {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

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

.thanks-section {
    padding: 120px 0;
    background: #f8f9fa;
}

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

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

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

.thanks-card > p {
    font-size: 18px;
    color: #555;
    margin-bottom: 28px;
}

.thanks-info {
    background: #ecf0f1;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 32px;
}

.thanks-info p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 8px;
}

.thanks-info p:last-child {
    margin-bottom: 0;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

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

.legal-card {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

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

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

.legal-card h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #34495e;
}

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

.legal-card ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-card ul li {
    margin-bottom: 8px;
    line-height: 1.7;
    color: #555;
}

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

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

    .service-card {
        width: 100%;
    }

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

    .nav {
        width: 100%;
        flex-direction: column;
        gap: 12px;
    }

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

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

    .thanks-actions {
        flex-direction: column;
    }

    .thanks-actions .btn-primary,
    .thanks-actions .btn-secondary {
        width: 100%;
    }
}