* {
    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: #1a1a1a;
    background-color: #f5f7fa;
}

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

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

.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;
    min-width: 250px;
    margin: 0;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 28px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cookie-accept {
    background-color: #3498db;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #2980b9;
}

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

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

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

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

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

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

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

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

.hero-card {
    position: relative;
    height: 600px;
    overflow: hidden;
    border-radius: 0;
    background-color: #34495e;
}

.hero-image-container {
    width: 100%;
    height: 100%;
}

.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(44,62,80,0.85) 0%, rgba(52,152,219,0.75) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
    color: #ffffff;
}

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

.hero-overlay p {
    font-size: 20px;
    margin-bottom: 32px;
    max-width: 700px;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: #e74c3c;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(231,76,60,0.4);
}

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

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

.intro-card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

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

.intro-card.accent {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
}

.stat-block {
    text-align: center;
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    line-height: 1.4;
}

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

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

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

.feature-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 300px;
    background-color: #f8f9fa;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.feature-image {
    width: 100%;
    height: 260px;
    overflow: hidden;
    background-color: #e0e0e0;
}

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

.feature-content {
    padding: 32px;
}

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

.feature-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #555555;
}

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

.problem-card {
    background-color: #ffffff;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.problem-card h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #2c3e50;
}

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

.problem-item {
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
    padding: 28px;
    background-color: #f8f9fa;
    border-left: 4px solid #e74c3c;
    border-radius: 8px;
}

.problem-item strong {
    display: block;
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.problem-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #666666;
}

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

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

.service-card {
    flex: 1;
    min-width: 300px;
    max-width: 360px;
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    padding: 40px 32px;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #3498db;
    box-shadow: 0 8px 20px rgba(52,152,219,0.2);
}

.service-card.featured {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f4f8 100%);
    border: 3px solid #3498db;
    transform: scale(1.05);
}

.service-header {
    text-align: center;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 2px solid #ecf0f1;
}

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

.service-price {
    font-size: 36px;
    font-weight: 700;
    color: #3498db;
}

.service-price span {
    font-size: 16px;
    font-weight: 400;
    color: #7f8c8d;
}

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

.service-features li {
    padding: 12px 0;
    font-size: 15px;
    color: #555555;
    border-bottom: 1px solid #f0f0f0;
}

.service-features li:before {
    content: "✓ ";
    color: #27ae60;
    font-weight: 700;
    margin-right: 8px;
}

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

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

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

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 36px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-left: 4px solid #3498db;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
}

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

.form-card {
    max-width: 700px;
    margin: 0 auto;
    background-color: #f8f9fa;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

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

.form-card > p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 16px;
    color: #666666;
}

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

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

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

.form-group input,
.form-group select {
    padding: 14px;
    font-size: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

.submit-button {
    padding: 16px;
    background-color: #e74c3c;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 12px;
}

.submit-button:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

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

.references-section h3 {
    font-size: 24px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.references-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.references-list p {
    font-size: 14px;
    line-height: 1.6;
    color: #555555;
}

.references-list a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.references-list a:hover {
    text-decoration: underline;
}

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

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 40px 24px;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

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

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

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: #bdc3c7;
}

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

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

.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-disclaimer {
    background-color: #243342;
    padding: 32px 24px;
    margin: 0 auto;
    max-width: 1200px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: #bdc3c7;
}

.footer-bottom {
    background-color: #1a252f;
    padding: 20px 0;
    text-align: center;
}

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

.thanks-container {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px;
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    text-align: center;
}

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

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

.thanks-container .back-link {
    display: inline-block;
    margin-top: 32px;
    padding: 14px 32px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.thanks-container .back-link:hover {
    background-color: #2980b9;
}

.about-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    color: #ffffff;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
}

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

.about-card {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

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

.about-card p {
    font-size: 17px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 16px;
}

.about-image-section {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.about-image-card {
    flex: 1;
    min-width: 280px;
    background-color: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
}

.about-image-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.about-image-content {
    padding: 24px;
}

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

.about-image-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #666666;
}

.services-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #ffffff;
    text-align: center;
}

.services-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.services-hero p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
}

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

.service-detail-card {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 3px solid #ecf0f1;
    flex-wrap: wrap;
    gap: 20px;
}

.service-detail-header h2 {
    font-size: 36px;
    color: #2c3e50;
}

.service-detail-price {
    font-size: 40px;
    font-weight: 700;
    color: #e74c3c;
}

.service-detail-price span {
    font-size: 18px;
    font-weight: 400;
    color: #7f8c8d;
}

.service-detail-card p {
    font-size: 17px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 20px;
}

.service-detail-card ul {
    margin: 24px 0;
    padding-left: 24px;
}

.service-detail-card ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 12px;
}

.contact-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: #ffffff;
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-hero p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
}

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

.contact-info-card {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

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

.contact-info-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-info-item {
    flex: 1;
    min-width: 250px;
}

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

.contact-info-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555555;
}

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

.legal-card {
    background-color: #ffffff;
    padding: 60px;
    border-radius: 16px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.legal-card h1 {
    font-size: 40px;
    margin-bottom: 40px;
    color: #2c3e50;
}

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

.legal-card h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 16px;
    color: #34495e;
}

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

.legal-card ul {
    margin: 20px 0;
    padding-left: 32px;
}

.legal-card ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 12px;
}

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

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

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

    .card-grid-intro {
        flex-direction: column;
    }

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

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

    .main-nav {
        flex-direction: column;
        gap: 16px;
    }

    .form-card {
        padding: 40px 24px;
    }

    .footer-container {
        flex-direction: column;
        gap: 40px;
    }
}