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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

.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;
    min-width: 300px;
}

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

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

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

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

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

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

.nav-floating {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 90%;
    max-width: 1200px;
}

.nav-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.brand {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

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

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

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

.ad-label {
    font-size: 11px;
    color: #666;
    border: 1px solid #ddd;
    padding: 4px 10px;
    border-radius: 4px;
}

.hero-visual {
    margin-top: 0;
    height: 100vh;
    position: relative;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #2c2c2c;
}

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

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

.hero-overlay h1 {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-overlay p {
    font-size: 24px;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

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

.narrow-text {
    max-width: 700px;
    margin: 0 auto;
    font-size: 19px;
    line-height: 1.8;
    color: #3a3a3a;
}

.narrow-text p {
    margin-bottom: 24px;
}

.image-text-offset {
    padding: 120px 20px;
    background: #ffffff;
}

.content-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.image-block {
    flex: 1;
    background-color: #e8e8e8;
}

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

.text-block {
    flex: 1;
}

.text-block h2 {
    font-size: 42px;
    margin-bottom: 24px;
    line-height: 1.3;
    color: #1a1a1a;
}

.text-block p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.problem-reveal {
    padding: 100px 20px;
    background: #1a1a1a;
    color: #ffffff;
}

.centered-content {
    max-width: 1100px;
    margin: 0 auto;
}

.centered-content h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
}

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

.problem-card {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #d4af37;
}

.problem-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #d4af37;
}

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

.visual-showcase {
    position: relative;
    background-color: #2c2c2c;
}

.showcase-container {
    position: relative;
}

.showcase-container img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.showcase-caption {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    padding: 20px 40px;
    border-radius: 8px;
}

.showcase-caption p {
    color: #ffffff;
    font-size: 20px;
    font-weight: 300;
    margin: 0;
}

.solution-layer {
    padding: 100px 20px;
    background: #f4f4f4;
}

.solution-content {
    max-width: 1000px;
    margin: 0 auto;
}

.solution-content h2 {
    font-size: 44px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.solution-content > p {
    font-size: 19px;
    margin-bottom: 50px;
    line-height: 1.7;
    color: #3a3a3a;
}

.feature-inline {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

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

.feature-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.feature-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #5a5a5a;
}

.trust-section {
    padding: 80px 20px;
    background: #ffffff;
}

.testimonial-inline {
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 40px;
    background: #f9f9f9;
    border-left: 4px solid #d4af37;
}

.testimonial-inline blockquote {
    font-style: italic;
}

.testimonial-inline p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #2c2c2c;
}

.testimonial-inline cite {
    font-style: normal;
    font-size: 15px;
    color: #666;
}

.image-break {
    background-color: #e0e0e0;
}

.image-break img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

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

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

.services-container h2 {
    font-size: 52px;
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.services-intro {
    text-align: center;
    font-size: 20px;
    color: #5a5a5a;
    margin-bottom: 60px;
}

.service-selection-form {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

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

.service-card {
    flex: 1;
    min-width: 320px;
    cursor: pointer;
    position: relative;
}

.service-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.card-content {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

.service-card:hover .card-content {
    border-color: #d4af37;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.service-card input[type="radio"]:checked + .card-content {
    border-color: #d4af37;
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.3);
}

.card-content img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    background-color: #e8e8e8;
}

.card-content h3 {
    font-size: 24px;
    margin: 20px 20px 10px;
    color: #1a1a1a;
}

.card-content p {
    font-size: 15px;
    margin: 0 20px 15px;
    color: #666;
    line-height: 1.5;
}

.card-content .price {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #d4af37;
    margin: 0 20px 20px;
}

.form-section {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.form-section h3 {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
    color: #1a1a1a;
}

.form-fields {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-fields input,
.form-fields textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

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

.btn-submit:hover {
    background: #f0c94d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.final-cta {
    padding: 100px 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #3a3a3a 100%);
    color: #ffffff;
    text-align: center;
}

.cta-content h2 {
    font-size: 48px;
    margin-bottom: 24px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    color: #cccccc;
}

.btn-cta {
    display: inline-block;
    padding: 16px 48px;
    background: #d4af37;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-cta:hover {
    background: #f0c94d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

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

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

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #ffffff;
}

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

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

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

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

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #d4af37;
    font-size: 13px;
    line-height: 1.6;
    color: #999;
}

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

.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f9f9f9 0%, #e8e8e8 100%);
    padding: 40px 20px;
}

.thanks-container {
    max-width: 700px;
    background: #ffffff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 40px;
}

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

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

.service-info {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
    border-left: 4px solid #d4af37;
}

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

.btn-home {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 40px;
    background: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-home:hover {
    background: #3a3a3a;
    transform: translateY(-2px);
}

.page-header {
    padding: 140px 20px 80px;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    color: #ffffff;
    text-align: center;
}

.page-header h1 {
    font-size: 52px;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 20px;
    color: #cccccc;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 20px;
}

.page-content h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.page-content h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.page-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.page-content ul {
    margin: 20px 0 20px 30px;
    font-size: 17px;
    line-height: 1.8;
    color: #3a3a3a;
}

.page-content ul li {
    margin-bottom: 10px;
}

.contact-info {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
    margin: 40px 0;
    border-left: 4px solid #d4af37;
}

.contact-info h3 {
    margin-top: 0;
}

.contact-info p {
    margin: 8px 0;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        border-radius: 20px;
    }

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

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

    .content-asymmetric {
        flex-direction: column;
    }

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

    .feature-inline {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
    }

    .service-cards {
        flex-direction: column;
    }

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