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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: white;
    padding: 20px;
    z-index: 1000;
    display: none;
}

.cookie-banner.active {
    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;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.btn-accept,
.btn-reject {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
}

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

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

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

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

.main-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
}

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

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

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

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

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

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

.hero-card {
    margin-top: 20px;
}

.hero-image {
    height: 500px;
    background-size: cover;
    background-position: center;
    background-color: #34495e;
    border-radius: 10px;
    overflow: hidden;
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(52, 73, 94, 0.85), rgba(44, 62, 80, 0.75));
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.hero-overlay h1 {
    font-size: 48px;
    color: white;
    margin-bottom: 20px;
    max-width: 800px;
    line-height: 1.2;
}

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

.intro-section,
.problem-section,
.solution-section,
.services-preview,
.testimonial-section,
.form-section {
    padding: 60px 0;
}

.card-grid {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.card-grid.reverse {
    flex-direction: row-reverse;
}

.info-card {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

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

.visual-card {
    flex: 1;
    min-width: 300px;
    background-color: #e8eef2;
    border-radius: 10px;
    overflow: hidden;
}

.visual-card img {
    width: 100%;
    height: auto;
    display: block;
}

.stacked-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.content-card {
    background: white;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.content-card.dark {
    background: linear-gradient(135deg, #34495e, #2c3e50);
    color: white;
}

.content-card h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.content-card p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.stat-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.stat-card {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 15px;
}

.stat-card p {
    font-size: 15px;
    color: #555;
}

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

.reference:hover {
    text-decoration: underline;
}

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

.card-deck {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    width: 340px;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #d5dce0;
}

.card-body {
    padding: 25px;
}

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

.card-body p {
    font-size: 15px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

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

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

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

.testimonial-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-left: 4px solid #3498db;
}

.testimonial-card p {
    font-size: 17px;
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.form-section {
    background: linear-gradient(135deg, #ecf0f1, #d5dce0);
}

.form-card {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

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

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

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

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

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

.btn-primary {
    width: 100%;
    padding: 15px;
    background: #27ae60;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background: #229954;
}

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

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

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

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

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

.footer-col a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-references {
    margin-bottom: 30px;
    padding-top: 30px;
    border-top: 1px solid #34495e;
}

.footer-references h4 {
    margin-bottom: 15px;
    font-size: 16px;
}

.footer-references p {
    font-size: 13px;
    margin-bottom: 8px;
    color: #bdc3c7;
}

.footer-references a {
    color: #3498db;
    text-decoration: none;
}

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

.footer-disclaimer {
    background: #34495e;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 30px;
}

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

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

.thanks-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.thanks-card {
    background: white;
    padding: 60px;
    border-radius: 10px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 600px;
}

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

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

.thanks-card .service-info {
    background: #ecf0f1;
    padding: 20px;
    border-radius: 5px;
    margin: 25px 0;
}

.thanks-card .service-info strong {
    color: #2c3e50;
}

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

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

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

.contact-info h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.info-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.info-item h3 {
    color: #3498db;
    margin-bottom: 10px;
    font-size: 18px;
}

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

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

.about-hero {
    text-align: center;
    margin-bottom: 60px;
}

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

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

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

.services-hero {
    text-align: center;
    margin-bottom: 60px;
}

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

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

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

.legal-card {
    background: white;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    max-width: 900px;
    margin: 0 auto;
}

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

.legal-card h2 {
    font-size: 28px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #34495e;
}

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

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

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

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

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

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

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

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

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

    .service-card {
        width: 100%;
    }

    .footer-grid {
        flex-direction: column;
        gap: 30px;
    }

    .main-nav {
        width: 100%;
        justify-content: center;
    }
}