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

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

.hidden {
    display: none !important;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-content {
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

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

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

.ad-disclosure {
    background-color: #f8f8f8;
    padding: 8px 20px;
    text-align: center;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.header-transparent {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-floating {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: #2c2c2c;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.hero-visual {
    position: relative;
    height: 85vh;
    overflow: hidden;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #1a1a1a;
}

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

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    width: 90%;
    max-width: 800px;
}

.hero-title {
    font-size: 56px;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 300;
    opacity: 0.9;
}

.intro-story {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
}

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

.intro-text {
    font-size: 22px;
    line-height: 1.8;
    color: #3a3a3a;
    text-align: center;
    font-weight: 300;
}

.story-section {
    padding: 100px 20px;
}

.story-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-image {
    flex: 1;
    background-color: #f0f0f0;
}

.story-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.story-content {
    flex: 1;
}

.story-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    font-weight: 400;
    color: #1a1a1a;
}

.story-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #4a4a4a;
}

.problem-section {
    padding: 80px 20px;
    background-color: #1a1a1a;
    color: #fff;
}

.section-title {
    font-size: 32px;
    margin-bottom: 24px;
    font-weight: 400;
    text-align: center;
}

.problem-section p {
    font-size: 18px;
    line-height: 1.8;
    text-align: center;
}

.insight-visual {
    padding: 100px 20px;
}

.insight-split {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-direction: row-reverse;
}

.insight-content {
    flex: 1;
}

.insight-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 400;
    color: #1a1a1a;
}

.insight-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #4a4a4a;
}

.insight-image {
    flex: 1;
    background-color: #f0f0f0;
}

.insight-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.trust-section {
    padding: 100px 20px;
    background-color: #f5f5f5;
}

.section-title-center {
    font-size: 38px;
    margin-bottom: 48px;
    font-weight: 400;
    text-align: center;
    color: #1a1a1a;
}

.testimonials-inline {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.testimonial-card {
    background-color: #fff;
    padding: 32px;
    border-left: 3px solid #d4af37;
}

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

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

.benefits-section {
    padding: 100px 20px;
}

.benefits-grid {
    display: flex;
    gap: 40px;
    margin-top: 48px;
}

.benefit-item {
    flex: 1;
    background-color: #f9f9f9;
}

.benefit-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.benefit-item h3 {
    font-size: 22px;
    margin: 24px 24px 12px 24px;
    font-weight: 500;
    color: #1a1a1a;
}

.benefit-item p {
    padding: 0 24px 24px 24px;
    font-size: 15px;
    line-height: 1.6;
    color: #4a4a4a;
}

.services-reveal {
    padding: 100px 20px;
    background-color: #fafafa;
}

.services-intro {
    text-align: center;
    font-size: 17px;
    color: #4a4a4a;
    margin-bottom: 48px;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin-top: 48px;
}

.service-card {
    background-color: #fff;
    display: flex;
    gap: 40px;
    align-items: center;
    padding: 32px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-card img {
    width: 380px;
    height: 280px;
    object-fit: cover;
    flex-shrink: 0;
    background-color: #f0f0f0;
}

.service-card h3 {
    font-size: 26px;
    margin-bottom: 12px;
    font-weight: 500;
    color: #1a1a1a;
}

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 16px;
}

.service-price {
    font-size: 28px;
    font-weight: 600;
    color: #d4af37;
    margin-bottom: 20px;
}

.cta-button {
    padding: 14px 32px;
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #d4af37;
    color: #1a1a1a;
}

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

.select-service:hover {
    background-color: #1a1a1a;
    color: #fff;
}

.form-section {
    padding: 100px 20px;
    background-color: #fff;
}

.form-intro {
    text-align: center;
    font-size: 16px;
    color: #4a4a4a;
    margin-bottom: 40px;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    color: #2c2c2c;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.submit-button {
    width: 100%;
    padding: 16px 32px;
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: #d4af37;
    color: #1a1a1a;
}

.disclaimer-section {
    padding: 60px 20px;
    background-color: #f5f5f5;
}

.disclaimer-text {
    font-size: 13px;
    line-height: 1.7;
    color: #666;
    text-align: center;
}

.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 20px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 500;
}

.footer-column p {
    font-size: 14px;
    color: #ccc;
}

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

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

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #333;
    text-align: center;
}

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

.thanks-container {
    max-width: 700px;
    margin: 100px auto;
    padding: 60px 40px;
    text-align: center;
    background-color: #f9f9f9;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 400;
    color: #1a1a1a;
}

.thanks-container p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 32px;
}

.back-home {
    display: inline-block;
    padding: 14px 32px;
    background-color: #d4af37;
    color: #1a1a1a;
    text-decoration: none;
    transition: all 0.3s ease;
}

.back-home:hover {
    background-color: #1a1a1a;
    color: #fff;
}

.legal-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.legal-container h1 {
    font-size: 38px;
    margin-bottom: 32px;
    font-weight: 400;
    color: #1a1a1a;
}

.legal-container h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 16px;
    font-weight: 500;
    color: #2c2c2c;
}

.legal-container p,
.legal-container ul {
    font-size: 15px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 16px;
}

.legal-container ul {
    padding-left: 24px;
}

.legal-container li {
    margin-bottom: 8px;
}

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

.contact-info-grid {
    display: flex;
    gap: 60px;
    margin-top: 48px;
}

.contact-info-item {
    flex: 1;
    background-color: #f9f9f9;
    padding: 32px;
}

.contact-info-item h3 {
    font-size: 22px;
    margin-bottom: 16px;
    font-weight: 500;
    color: #1a1a1a;
}

.contact-info-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 8px;
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .story-grid,
    .insight-split,
    .benefits-grid,
    .service-card,
    .footer-content,
    .contact-info-grid {
        flex-direction: column;
    }

    .service-card:nth-child(even) {
        flex-direction: column;
    }

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

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