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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

.cookie-banner.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-accept,
.cookie-reject {
    padding: 0.75rem 2rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-accept {
    background: #ff5722;
    color: #ffffff;
}

.cookie-accept:hover {
    background: #e64a19;
}

.cookie-reject {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

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

.floating-nav {
    position: fixed;
    top: 2rem;
    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: 1rem 2rem;
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff5722;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

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

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

.ad-label {
    font-size: 0.75rem;
    color: #666;
    font-style: italic;
    padding-left: 1rem;
    border-left: 1px solid #ddd;
}

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

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.7), rgba(0, 0, 0, 0.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.hero-overlay h1 {
    font-size: 4rem;
    color: #ffffff;
    font-weight: 800;
    max-width: 900px;
    margin-bottom: 1.5rem;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-overlay p {
    font-size: 1.5rem;
    color: #ffffff;
    max-width: 700px;
    margin-bottom: 2.5rem;
}

.hero-cta {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: #ffffff;
    color: #ff5722;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.hero-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.story-intro {
    padding: 8rem 2rem;
    background: #f8f9fa;
}

.narrow-content {
    max-width: 700px;
    margin: 0 auto;
}

.narrow-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    line-height: 1.2;
}

.narrow-content p {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 1.5rem;
}

.image-break {
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #34495e;
}

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

.problem-section {
    padding: 8rem 2rem;
    background: #ffffff;
}

.offset-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.problem-text {
    flex: 1;
}

.problem-text h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.problem-text p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.problem-visual {
    flex: 1;
    background-color: #7f8c8d;
}

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

.insight-reveal {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #ff5722, #ff7043);
    color: #ffffff;
}

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

.insight-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.insight-content p {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.citation {
    color: #fff;
    text-decoration: underline;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.citation:hover {
    opacity: 0.8;
}

.visual-grid {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.visual-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.grid-item {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 300px;
    position: relative;
    overflow: hidden;
    height: 450px;
    background-color: #95a5a6;
}

.grid-item.large {
    flex: 1 1 100%;
    height: 600px;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.grid-item:hover img {
    transform: scale(1.05);
}

.grid-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 2.5rem;
    color: #ffffff;
}

.grid-overlay h3 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.grid-overlay p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.select-service {
    padding: 0.875rem 2rem;
    background: #ff5722;
    color: #ffffff;
    border: none;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.select-service:hover {
    background: #e64a19;
    transform: translateY(-2px);
}

.testimonials-flow {
    padding: 8rem 2rem;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card {
    padding: 2.5rem;
    background: #f8f9fa;
    border-left: 4px solid #ff5722;
}

.testimonial-card p {
    font-size: 1.3rem;
    font-style: italic;
    color: #333;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-size: 1rem;
    color: #666;
    font-weight: 600;
}

.pricing-reveal {
    padding: 8rem 2rem;
    background: #1a1a1a;
    color: #ffffff;
}

.pricing-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.pricing-intro h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.pricing-intro p {
    font-size: 1.2rem;
    color: #ccc;
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background: #2a2a2a;
    padding: 2.5rem;
    border-radius: 8px;
    position: relative;
}

.pricing-card.featured {
    background: linear-gradient(135deg, #ff5722, #ff7043);
    transform: scale(1.05);
}

.popular-tag {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #ffffff;
    color: #ff5722;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 20px;
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.pricing-card p {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.pricing-card.featured p {
    color: #fff;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #ff5722;
}

.pricing-card.featured .price {
    color: #ffffff;
}

.pricing-card .select-service {
    width: 100%;
}

.cta-immersive {
    height: 700px;
    position: relative;
    overflow: hidden;
    background-color: #16a085;
}

.cta-immersive img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.6);
    padding: 4rem;
    border-radius: 12px;
}

.cta-overlay h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-overlay p {
    font-size: 1.3rem;
}

.form-section {
    padding: 8rem 2rem;
    background: #f8f9fa;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #1a1a1a;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    width: 100%;
    padding: 1.125rem;
    background: #ff5722;
    color: #ffffff;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #e64a19;
    transform: translateY(-2px);
}

.disclaimer-section {
    padding: 4rem 2rem;
    background: #fff3e0;
}

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

.disclaimer-content p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
}

.site-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

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

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ff5722;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.references {
    list-style: decimal;
    padding-left: 1.5rem;
}

.references li {
    margin-bottom: 0.75rem;
}

.references a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.references a:hover {
    color: #ff5722;
}

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

.thanks-container {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem 2rem;
    text-align: center;
}

.thanks-container h1 {
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.thanks-container p {
    font-size: 1.3rem;
    color: #555;
    max-width: 700px;
    margin-bottom: 2rem;
}

.thanks-container .back-home {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #ff5722;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.thanks-container .back-home:hover {
    background: #e64a19;
    transform: translateY(-2px);
}

.contact-page {
    padding: 10rem 2rem 6rem;
    min-height: 80vh;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-content h1 {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: center;
}

.contact-info {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    color: #ff5722;
    margin-bottom: 0.5rem;
}

.contact-item p {
    font-size: 1.1rem;
    color: #333;
}

.services-page {
    padding: 10rem 2rem 6rem;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.services-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.services-list {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-item {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.service-image {
    flex: 0 0 300px;
    height: 250px;
    overflow: hidden;
    border-radius: 8px;
    background-color: #95a5a6;
}

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

.service-details {
    flex: 1;
}

.service-details h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-details p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff5722;
    margin-bottom: 1.5rem;
}

.about-page {
    padding: 10rem 2rem 6rem;
}

.about-header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-header h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

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

.about-section {
    margin-bottom: 4rem;
}

.about-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.about-section p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.legal-page {
    padding: 10rem 2rem 6rem;
}

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

.legal-content h1 {
    font-size: 3rem;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.legal-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content ul li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
    color: #555;
}

@media (max-width: 768px) {
    .floating-nav {
        width: 95%;
        top: 1rem;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

    .ad-label {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid #ddd;
        padding-top: 0.75rem;
    }

    .hero-overlay h1 {
        font-size: 2.5rem;
    }

    .hero-overlay p {
        font-size: 1.1rem;
    }

    .offset-layout {
        flex-direction: column;
    }

    .pricing-card {
        flex: 1 1 100%;
    }

    .grid-item {
        flex: 1 1 100%;
    }

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

    .service-image {
        flex: 0 0 200px;
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
}