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

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

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

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

.logo {
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 1px;
}

.ad-label {
    font-size: 11px;
    color: #999;
    padding: 4px 8px;
    border: 1px solid #444;
    border-radius: 3px;
}

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

.nav-main a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #fff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    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-buttons {
    display: flex;
    gap: 15px;
}

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

.btn-accept {
    background: #d4af37;
    color: #1a1a1a;
}

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

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

.btn-reject:hover {
    background: #444;
}

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

.hero-image {
    height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-overlay {
    background: rgba(0,0,0,0.5);
    padding: 60px 40px;
    text-align: center;
    color: #fff;
    max-width: 800px;
    border-radius: 10px;
}

.hero-overlay h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: 2px;
}

.hero-overlay p {
    font-size: 20px;
    font-weight: 300;
}

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

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

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

.info-card.highlight {
    background: #f5f5f5;
    border-left: 4px solid #d4af37;
}

.info-card h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.info-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

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

.problem-section {
    padding: 60px 0;
    background: #1a1a1a;
}

.section-card {
    background: #2c2c2c;
    padding: 50px;
    border-radius: 10px;
    color: #fff;
}

.section-card.dark {
    background: #1f1f1f;
}

.section-card h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #d4af37;
}

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

.section-card img {
    width: 100%;
    max-width: 700px;
    margin: 30px 0;
    border-radius: 8px;
    display: block;
}

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

.insight-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.insight-card {
    flex: 1;
    min-width: 280px;
    background: #f9f9f9;
    padding: 35px;
    border-radius: 8px;
    border-top: 3px solid #d4af37;
}

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

.insight-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

.trust-section {
    padding: 70px 0;
    background: #f5f5f5;
}

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

.trust-card h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #1a1a1a;
}

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

.testimonial {
    flex: 1;
    min-width: 280px;
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #d4af37;
}

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

.testimonial span {
    font-size: 14px;
    color: #888;
    font-weight: 600;
}

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

.services-preview h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

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

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

.service-card img {
    width: 100%;
    height: 250px;
    display: block;
}

.service-card h3 {
    font-size: 22px;
    padding: 20px 20px 10px;
    color: #1a1a1a;
}

.service-card p {
    padding: 0 20px 15px;
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.price-reveal {
    padding: 0 20px 15px;
    font-size: 20px;
    font-weight: bold;
    color: #d4af37;
}

.btn-select {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 12px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 15px;
    transition: background 0.3s;
}

.btn-select:hover {
    background: #d4af37;
    color: #1a1a1a;
}

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

.form-card {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    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: #1a1a1a;
    text-align: center;
}

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

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

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

.form-group input,
.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 textarea:focus {
    outline: none;
    border-color: #d4af37;
}

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

.btn-submit {
    width: 100%;
    padding: 15px;
    background: #d4af37;
    color: #1a1a1a;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #c29d2f;
}

.final-cta {
    padding: 80px 0;
    background: #1a1a1a;
}

.cta-card {
    text-align: center;
    color: #fff;
    padding: 50px;
}

.cta-card h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #d4af37;
}

.cta-card p {
    font-size: 18px;
    margin-bottom: 30px;
}

.btn-cta {
    padding: 15px 40px;
    background: #d4af37;
    color: #1a1a1a;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cta:hover {
    background: #c29d2f;
    transform: scale(1.05);
}

.disclaimer-section {
    padding: 50px 0;
    background: #f9f9f9;
}

.disclaimer-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #d4af37;
}

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

.footer-main {
    background: #1a1a1a;
    color: #ccc;
    padding: 50px 0 20px;
}

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

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

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

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

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

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

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

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

.footer-bottom p {
    font-size: 13px;
    color: #888;
}

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

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

.thanks-card h1 {
    font-size: 36px;
    color: #d4af37;
    margin-bottom: 20px;
}

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

.thanks-card .service-info {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
}

.thanks-card .service-info strong {
    color: #1a1a1a;
}

.legal-page {
    padding: 60px 0;
    background: #fff;
}

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

.legal-content h1 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.legal-content h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #444;
}

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

.legal-content ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

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

.about-hero {
    background: #1a1a1a;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

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

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

.about-section {
    padding: 70px 0;
}

.about-content {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

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

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

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

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

.about-image img {
    width: 100%;
    border-radius: 10px;
}

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

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

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

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.info-block {
    margin-bottom: 30px;
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c2c2c;
}

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

.contact-map {
    flex: 1;
    min-width: 300px;
    background: #f5f5f5;
    border-radius: 10px;
    padding: 40px;
    text-align: center;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

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

    .services-grid {
        justify-content: center;
    }

    .service-card {
        max-width: 100%;
    }

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