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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
}

.floating-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    width: 90%;
    max-width: 1100px;
}

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

.brand {
    font-size: 1.3rem;
    font-weight: 700;
    color: #27ae60;
}

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

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

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

.ad-disclosure {
    font-size: 0.75rem;
    color: #7f8c8d;
    font-style: italic;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #34495e;
    color: #ffffff;
    padding: 20px;
    z-index: 2000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.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-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: #3498db;
}

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

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

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

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

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

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

.hero-visual {
    margin-top: 80px;
    position: relative;
    height: 85vh;
    overflow: hidden;
    background-color: #34495e;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 80px 40px 60px;
    color: #ffffff;
}

.hero-overlay h1 {
    font-size: 3.5rem;
    font-weight: 800;
    max-width: 900px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-overlay p {
    font-size: 1.4rem;
    max-width: 700px;
    opacity: 0.9;
}

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

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

.narrow-content h2 {
    font-size: 2.3rem;
    margin-bottom: 30px;
    color: #2c3e50;
    font-weight: 700;
}

.narrow-content p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    color: #34495e;
}

.problem-amplification {
    padding: 80px 20px;
    background: #ffffff;
}

.split-visual {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.visual-left,
.visual-right {
    flex: 1;
    background-color: #bdc3c7;
}

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

.content-right,
.content-left {
    flex: 1;
    padding: 20px;
}

.content-right h3,
.content-left h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #2c3e50;
}

.problem-list {
    list-style: none;
    margin: 30px 0;
}

.problem-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 1.1rem;
}

.problem-list li::before {
    content: "×";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-size: 1.5rem;
    font-weight: bold;
}

.insight-section {
    padding: 100px 20px;
    background: #2c3e50;
    color: #ffffff;
}

.insight-section .narrow-content h2 {
    color: #ffffff;
    text-align: center;
    margin-bottom: 20px;
}

.insight-section .narrow-content p {
    color: #ecf0f1;
    text-align: center;
    margin-bottom: 60px;
}

.cards-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.insight-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background: #34495e;
    border-radius: 10px;
    overflow: hidden;
}

.card-visual {
    width: 100%;
    height: 240px;
    background-color: #7f8c8d;
}

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

.insight-card h4 {
    font-size: 1.4rem;
    margin: 25px 20px 15px;
    color: #ffffff;
}

.insight-card p {
    margin: 0 20px 25px;
    color: #bdc3c7;
    font-size: 1rem;
}

.insight-card a {
    color: #3498db;
    text-decoration: none;
}

.trust-building {
    padding: 100px 20px;
    background: #ecf0f1;
}

.testimonial-flow {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.testimonial-item {
    background: #ffffff;
    padding: 40px;
    border-left: 5px solid #27ae60;
    border-radius: 5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-content p {
    font-size: 1.2rem;
    font-style: italic;
    color: #34495e;
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.benefits-reveal {
    padding: 100px 20px;
    background: #ffffff;
}

.wide-content {
    max-width: 1400px;
    margin: 0 auto;
}

.wide-content h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    text-align: center;
    color: #2c3e50;
}

.benefits-asymmetric {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.benefit-major {
    flex: 2;
    min-width: 400px;
    position: relative;
}

.benefit-major img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.benefit-text {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    margin-top: -100px;
    margin-left: 40px;
    margin-right: 40px;
    position: relative;
    border-radius: 5px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.benefit-text h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.benefit-secondary {
    flex: 1;
    min-width: 300px;
    background: #ecf0f1;
    padding: 35px;
    border-radius: 10px;
}

.benefit-secondary h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #27ae60;
}

.benefit-secondary p {
    font-size: 1.05rem;
    color: #34495e;
}

.service-selection {
    padding: 100px 20px;
    background: #f8f9fa;
}

.service-selection .narrow-content {
    text-align: center;
    margin-bottom: 60px;
}

.service-selection h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-cards {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: #ffffff;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

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

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-card p {
    font-size: 1rem;
    margin-bottom: 25px;
    color: #7f8c8d;
    line-height: 1.6;
}

.service-card .price {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 25px;
}

.select-service {
    width: 100%;
    padding: 14px;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service:hover {
    background: #229954;
}

.form-section {
    padding: 100px 20px;
    background: #2c3e50;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.form-container h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #2c3e50;
    text-align: center;
}

.form-container > p {
    text-align: center;
    margin-bottom: 40px;
    color: #7f8c8d;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ecf0f1;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

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

.disclaimer {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-style: italic;
    line-height: 1.7;
    text-align: center;
}

.main-footer {
    background: #34495e;
    color: #ecf0f1;
    padding: 60px 20px 30px;
}

.footer-content {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

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

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

.reference {
    font-size: 0.85rem;
    line-height: 1.6;
}

.reference a {
    color: #3498db;
    word-break: break-all;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #4a5f7f;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #95a5a6;
}

.about-hero,
.services-hero,
.contact-hero {
    margin-top: 80px;
    padding: 100px 20px;
    background: #2c3e50;
    color: #ffffff;
    text-align: center;
}

.about-hero .hero-image-wrapper {
    position: relative;
    max-width: 1400px;
    margin: -50px auto 0;
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #34495e;
}

.about-hero h1 {
    font-size: 3rem;
}

.about-story {
    padding: 100px 20px;
    background: #ffffff;
}

.about-story h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #2c3e50;
}

.team-approach {
    padding: 80px 20px;
    background: #ecf0f1;
}

.approach-list {
    list-style: none;
    margin-top: 25px;
}

.approach-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 1.05rem;
}

.approach-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-size: 1.3rem;
    font-weight: bold;
}

.values-section {
    padding: 100px 20px;
    background: #ffffff;
}

.values-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 60px;
}

.value-item {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
    border-top: 4px solid #27ae60;
}

.value-item h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.value-item p {
    color: #7f8c8d;
    line-height: 1.7;
}

.services-detailed {
    padding: 80px 20px;
    background: #ffffff;
}

.service-detail-card {
    max-width: 1300px;
    margin: 0 auto 80px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.service-visual {
    flex: 1;
    background-color: #bdc3c7;
}

.service-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 10px;
}

.service-info {
    flex: 1;
    padding: 20px;
}

.service-info h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-info h4 {
    font-size: 1.2rem;
    margin: 25px 0 15px;
    color: #27ae60;
}

.service-info ul {
    list-style: none;
    margin-bottom: 30px;
}

.service-info ul li {
    padding: 8px 0 8px 25px;
    position: relative;
}

.service-info ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-size: 1.5rem;
}

.service-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.btn-service {
    display: inline-block;
    padding: 14px 35px;
    background: #27ae60;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-service:hover {
    background: #229954;
}

.contact-details {
    padding: 80px 20px;
    background: #ffffff;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #2c3e50;
}

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

.info-block h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #27ae60;
}

.info-block p {
    color: #7f8c8d;
    line-height: 1.7;
}

.contact-visual {
    flex: 1;
    background-color: #bdc3c7;
}

.contact-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 10px;
}

.thanks-section {
    margin-top: 80px;
    padding: 100px 20px;
    background: #ecf0f1;
    min-height: 70vh;
}

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

.thanks-content {
    flex: 1;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #27ae60;
}

.thanks-content > p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #34495e;
}

.thanks-service-info {
    background: #ffffff;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 30px;
    border-left: 4px solid #27ae60;
}

.next-steps {
    margin-bottom: 40px;
}

.next-steps h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.next-steps ul {
    list-style: none;
}

.next-steps ul li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 1.05rem;
}

.next-steps ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.btn-back {
    display: inline-block;
    padding: 14px 35px;
    background: #27ae60;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-back:hover {
    background: #229954;
}

.thanks-visual {
    flex: 1;
    background-color: #bdc3c7;
}

.thanks-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 10px;
}

.legal-page {
    margin-top: 80px;
    padding: 100px 20px;
    background: #ffffff;
    min-height: 70vh;
}

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

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #2c3e50;
}

.legal-content h2 {
    font-size: 1.6rem;
    margin: 40px 0 20px;
    color: #27ae60;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin: 30px 0 15px;
    color: #34495e;
}

.legal-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #34495e;
}

.legal-content a {
    color: #3498db;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-content ul,
.legal-content ol {
    margin: 20px 0 20px 30px;
}

.legal-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-date {
    margin-top: 50px;
    font-style: italic;
    color: #95a5a6;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #ecf0f1;
}

.cookie-table th {
    background: #ecf0f1;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    color: #7f8c8d;
}

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 2rem;
    }

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

    .split-visual {
        flex-direction: column;
    }

    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
    }

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

    .benefit-major {
        min-width: 100%;
    }

    .contact-container,
    .thanks-container {
        flex-direction: column;
    }

    .nav-container {
        flex-direction: column;
        text-align: center;
    }

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