* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

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

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

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

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #8B4513;
}

.ad-disclosure {
    font-size: 11px;
    color: #666;
    padding: 4px 8px;
    background-color: #f0f0f0;
    border-radius: 4px;
}

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

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

.nav a:hover {
    color: #8B4513;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #fff;
    padding: 20px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

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

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

.btn-reject {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-reject:hover {
    background-color: #fff;
    color: #2c3e50;
}

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

.hero-image {
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139,69,19,0.8), rgba(160,82,45,0.6));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text {
    text-align: center;
    color: #fff;
    padding: 40px;
}

.hero-text h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-text p {
    font-size: 22px;
    max-width: 600px;
}

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

.intro-card {
    background-color: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.intro-card h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #8B4513;
}

.intro-card p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.citation {
    color: #2980b9;
    text-decoration: none;
    font-weight: 600;
}

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

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

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

.card-item {
    flex: 1;
    min-width: 300px;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.card-item:hover {
    transform: translateY(-5px);
}

.card-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.card-item h3 {
    padding: 20px 20px 10px;
    font-size: 22px;
    color: #8B4513;
}

.card-item p {
    padding: 0 20px 20px;
    font-size: 16px;
    line-height: 1.6;
}

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

.insight-card-large {
    background: linear-gradient(135deg, #D2691E, #8B4513);
    color: #fff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.15);
}

.insight-card-large h2 {
    font-size: 36px;
    margin-bottom: 25px;
}

.insight-card-large p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.insight-card-large .citation {
    color: #fff;
    text-decoration: underline;
}

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

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

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

.service-card {
    flex: 1;
    min-width: 320px;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    background-color: #ddd;
}

.service-info {
    padding: 25px;
}

.service-info h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #8B4513;
}

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

.price {
    display: block;
    font-size: 22px;
    font-weight: bold;
    color: #27ae60;
    margin-bottom: 15px;
}

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

.btn-select:hover {
    background-color: #6d3710;
}

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

.testimonials-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #8B4513;
}

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-left: 4px solid #8B4513;
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    display: block;
    font-weight: 600;
    color: #8B4513;
}

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

.form-card {
    max-width: 600px;
    margin: 0 auto;
    background-color: #f9f9f9;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.1);
}

.form-card h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 20px;
    color: #8B4513;
}

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

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

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

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

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

.form-group input[readonly] {
    background-color: #e9e9e9;
    cursor: not-allowed;
}

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

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

.disclaimer-section {
    padding: 60px 0;
    background-color: #fff3cd;
}

.disclaimer-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    border-left: 4px solid #ff9800;
}

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

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

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

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #fff;
}

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

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

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

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

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

.references li {
    font-size: 13px;
    margin-bottom: 8px;
}

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

.footer-bottom p {
    font-size: 14px;
}

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-card {
    background-color: #fff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 6px 30px rgba(0,0,0,0.15);
    text-align: center;
    max-width: 600px;
}

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

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

.thanks-card .btn-home {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 40px;
    background-color: #8B4513;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.thanks-card .btn-home:hover {
    background-color: #6d3710;
}

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

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

.content-card h1 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #8B4513;
}

.content-card h2 {
    font-size: 28px;
    margin-top: 35px;
    margin-bottom: 20px;
    color: #8B4513;
}

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

.content-card p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.content-card ul,
.content-card ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.content-card ul li,
.content-card ol li {
    margin-bottom: 10px;
    line-height: 1.7;
}

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

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

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

.contact-info-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #8B4513;
}

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

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

    .nav {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

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

    .hero-text p {
        font-size: 18px;
    }

    .cards-grid,
    .services-grid,
    .testimonials-grid {
        flex-direction: column;
    }

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

    .form-card {
        padding: 30px 20px;
    }
}