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

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

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

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

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

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

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

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

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

.hero-section {
    margin-bottom: 60px;
}

.hero-image-container {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #34495e;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.85), rgba(52, 152, 219, 0.75));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
}

.hero-overlay h1 {
    color: #ffffff;
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-overlay p {
    color: #ffffff;
    font-size: 20px;
    max-width: 700px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    padding: 40px;
    margin-bottom: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.card h3 {
    color: #34495e;
    margin-bottom: 15px;
    margin-top: 25px;
    font-size: 22px;
}

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

.card ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.card li {
    margin-bottom: 10px;
    color: #555;
}

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

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

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

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

.problem-card {
    flex: 1;
    min-width: 300px;
}

.problem-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
}

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

.solution-card {
    max-width: 900px;
    margin: 0 auto;
}

.benefits-section {
    padding: 60px 0;
    background-color: #ffffff;
}

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

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

.benefit-card {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.services-preview-section {
    padding: 60px 0;
    background-color: #ecf0f1;
}

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

.service-preview-card {
    flex: 1;
    min-width: 280px;
    cursor: pointer;
}

.service-preview-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

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

.btn-select-service {
    width: 100%;
    padding: 15px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 15px;
}

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

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background-color: #f8f9fa;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-card strong {
    color: #2c3e50;
}

.pricing-section {
    padding: 60px 0;
    background-color: #2c3e50;
}

.pricing-reveal-card {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
}

.pricing-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.pricing-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 20px;
    background-color: #ecf0f1;
    border-radius: 8px;
}

.pricing-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: #e74c3c;
}

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

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

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #ecf0f1;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s;
}

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

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

.btn-submit:hover {
    background-color: #c0392b;
}

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

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

.disclaimer-card p {
    color: #856404;
}

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

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

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

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 20px;
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
}

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.btn-accept:hover {
    background-color: #229954;
}

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

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

.page-header {
    padding: 80px 0 40px;
    background: linear-gradient(135deg, #e74c3c, #3498db);
    color: #ffffff;
    text-align: center;
}

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

.page-header p {
    font-size: 20px;
}

.about-content,
.services-content,
.contact-content,
.legal-content {
    padding: 60px 0;
}

.about-main-card img,
.service-detail-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 30px;
    object-fit: cover;
}

.about-value-card,
.about-mission-card,
.about-approach-card {
    margin-bottom: 30px;
}

.service-detail-card {
    margin-bottom: 50px;
}

.service-detail-content {
    position: relative;
}

.price-tag {
    display: inline-block;
    background-color: #e74c3c;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-info-card,
.contact-map-card,
.contact-note-card {
    margin-bottom: 30px;
}

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

.contact-map-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    object-fit: cover;
}

.legal-card {
    max-width: 900px;
    margin: 0 auto;
}

.thanks-section {
    padding: 100px 0;
    text-align: center;
}

.thanks-card {
    max-width: 700px;
    margin: 0 auto;
}

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

.service-selected {
    background-color: #e8f5e9;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    font-size: 18px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s;
}

.btn-primary {
    background-color: #e74c3c;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #c0392b;
}

.btn-secondary {
    background-color: #3498db;
    color: #ffffff;
}

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

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

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

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

    .card {
        padding: 25px;
    }

    .card h2 {
        font-size: 26px;
    }

    .footer-content {
        gap: 30px;
    }

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

    .page-header h1 {
        font-size: 32px;
    }
}