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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    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-content p {
    flex: 1;
    min-width: 300px;
}

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

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

.btn-accept {
    background-color: #4a90e2;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #357abd;
}

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

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

.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c2c2c;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #2c2c2c;
    transition: all 0.3s ease;
}

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

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

.nav-links li a:hover {
    color: #4a90e2;
}

.hero-visual {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 70px;
}

.hero-visual 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;
    z-index: 2;
    width: 90%;
    max-width: 800px;
}

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

.hero-overlay p {
    font-size: 24px;
    font-weight: 300;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.story-intro {
    padding: 80px 40px;
    background-color: #f8f8f8;
}

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

.visual-block {
    position: relative;
    height: 70vh;
    overflow: hidden;
}

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

.overlay-text {
    position: absolute;
    bottom: 60px;
    left: 60px;
    color: #ffffff;
    max-width: 500px;
}

.overlay-text h2 {
    font-size: 48px;
    font-weight: 700;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

.problem-reveal {
    padding: 100px 40px;
    background-color: #ffffff;
}

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

.content-side {
    flex: 1;
}

.content-side h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c2c2c;
    line-height: 1.3;
}

.content-side p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.image-side {
    flex: 1;
}

.image-side img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.insight-section {
    padding: 80px 40px;
    background-color: #2c2c2c;
    color: #ffffff;
    text-align: center;
}

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

.centered-content h2 {
    font-size: 42px;
    margin-bottom: 25px;
}

.centered-content p {
    font-size: 20px;
    line-height: 1.7;
}

.approach-visual {
    position: relative;
    height: 80vh;
}

.image-text-overlay {
    position: relative;
    height: 100%;
}

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

.approach-content {
    position: absolute;
    top: 50%;
    right: 80px;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.95);
    padding: 50px;
    max-width: 500px;
    border-radius: 8px;
}

.approach-content h3 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #2c2c2c;
}

.approach-content ul {
    list-style: none;
}

.approach-content ul li {
    font-size: 17px;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.approach-content ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #4a90e2;
    font-weight: 700;
}

.testimonial-inline {
    padding: 80px 40px;
    background-color: #f0f4f8;
}

.testimonial-card {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 50px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.testimonial-card p {
    font-size: 22px;
    font-style: italic;
    margin-bottom: 20px;
    color: #2c2c2c;
    line-height: 1.6;
}

.testimonial-card cite {
    font-size: 16px;
    color: #777;
    font-style: normal;
}

.services-reveal {
    padding: 100px 40px;
    background-color: #ffffff;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 44px;
    color: #2c2c2c;
}

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

.service-card {
    flex: 1;
    min-width: 350px;
    max-width: 420px;
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

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

.service-card p {
    font-size: 16px;
    margin: 0 25px 20px;
    color: #555;
    line-height: 1.6;
    flex-grow: 1;
}

.service-cta {
    margin: 0 25px 20px;
}

.select-service {
    width: 100%;
    padding: 14px;
    background-color: #4a90e2;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.price {
    font-size: 28px;
    font-weight: 700;
    color: #2c2c2c;
    text-align: center;
    margin-bottom: 25px;
}

.form-section {
    padding: 100px 40px;
    background-color: #2c2c2c;
}

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

.form-container h2 {
    font-size: 38px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
}

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

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

.form-group input {
    width: 100%;
    padding: 14px;
    border: 1px solid #555;
    border-radius: 4px;
    font-size: 16px;
    background-color: #3a3a3a;
    color: #ffffff;
}

.form-group input:focus {
    outline: none;
    border-color: #4a90e2;
}

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

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

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

.trust-building {
    padding: 80px 40px;
    background-color: #f8f8f8;
}

.trust-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.trust-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.trust-content p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
}

.final-testimonial {
    padding: 80px 40px;
    background-color: #e8f0f7;
}

.disclaimer-section {
    padding: 60px 40px;
    background-color: #f9f9f9;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px;
    background-color: #fff5e6;
    border-left: 4px solid #ffa500;
    border-radius: 4px;
}

.disclaimer-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 40px 30px;
}

.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: 250px;
}

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 20px;
        display: none;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

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

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

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

    .approach-content {
        position: static;
        transform: none;
        margin: 20px;
        max-width: 100%;
    }

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

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