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

body {
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.5;
    color: #333;
    background-color: #fff
}

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

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fffffff2;
    box-shadow: 0 2px 8px #0000001a;
    z-index: 1000;
    padding: 16px 0;
    transition: all .3s ease
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.navbar-brand {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0056b3;
    text-decoration: none;
    transition: color .2s ease
}

.logo:hover {
    color: #30c8d6
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0
}

.navbar-toggle span {
    width: 100%;
    height: 2px;
    background-color: #0056b3;
    transition: all .3s ease
}

.navbar-menu, .navbar-end {
    display: flex;
    align-items: center
}

.navbar-item {
    margin-left: 24px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color .2s ease
}

.navbar-item:hover {
    color: #0056b3
}

.navbar-button {
    background-color: #0056b3;
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    transition: background-color .2s ease
}

.navbar-button:hover {
    background-color: #004494;
    color: #fff
}

.hero {
    position: relative;
    padding: 160px 0 0;
    background: linear-gradient(135deg, #0056b3, #30c8d6);
    color: #fff;
    overflow: hidden
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2
}

.hero-content {
    width: 50%;
    padding-right: 32px
}

.hero-title {
    font-size: 2.5rem;
    font-weight: bolder;
    margin-bottom: 16px;
    line-height: 1.2
}

.hero-title-2 {
    margin-top: 10px;
    font-size: 2rem;
    font-weight: bolder;
    margin-bottom: 16px;
    line-height: 1.2
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 32px;
    opacity: .9;
    line-height: 1.6
}

.hero-cta {
    display: flex;
    gap: 16px
}

.button {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all .3s ease
}

.primary {
    background-color: #fff;
    color: #0056b3
}

.primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px)
}

.secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid white
}

.secondary:hover {
    background-color: #ffffff1a;
    transform: translateY(-2px)
}

.hero-image {
    width: 45%;
    animation: float 6s ease-in-out infinite
}

.hero-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 16px 32px #00000026
}

.features {
    padding: 80px 0;
    background-color: #f5f9ff
}

.section-header {
    text-align: center;
    margin-bottom: 48px
}

.section-header h2 {
    font-size: 2rem;
    color: #0056b3;
    margin-bottom: 16px
}

.section-header p {
    font-size: 1.1rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto
}

.features-grid {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px
}

.feature-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 32px;
    box-shadow: 0 4px 16px #0000000d;
    transition: all .3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: appear .6s forwards
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px #0000001a
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 16px
}

.feature-title {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 12px
}

.feature-description {
    color: #666;
    line-height: 1.6
}

.testimonials {
    padding: 80px 0;
    background-color: #fff
}

.testimonial-carousel {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 24px
}

.testimonial-slides-container {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden
}

.testimonial-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: transform .5s ease
}

.testimonial-content {
    background-color: #f5f9ff;
    border-radius: 8px;
    padding: 32px;
    height: 100%;
    box-shadow: 0 4px 16px #0000000d;
    position: relative
}

.quote-mark {
    position: absolute;
    top: 16px;
    left: 16px;
    font-size: 4rem;
    color: #0056b31a;
    font-family: Georgia, serif;
    line-height: 1
}

.testimonial-quote {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 24px;
    position: relative;
    z-index: 1
}

.testimonial-author {
    display: flex;
    align-items: center
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 16px
}

.author-name {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 4px
}

.author-role {
    font-size: .9rem;
    color: #666
}

.carousel-arrow {
    background-color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px #0000001a;
    z-index: 2;
    transition: all .2s ease;
    color: #0056b3;
    font-size: 1.2rem
}

.carousel-arrow:hover {
    background-color: #0056b3;
    color: #fff
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all .2s ease
}

.indicator.active {
    background-color: #0056b3;
    transform: scale(1.2)
}

.download-section {
    padding: 80px 0;
    background-color: #f5f9ff
}

.download-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px
}

.ebook-preview {
    flex: 1;
    max-width: 500px
}

.ebook-preview img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 16px 32px #0000001a;
    margin-bottom: 24px
}

.ebook-features {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #555
}

.download-form-container {
    flex: 1
}

.form-card, .success-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 32px;
    box-shadow: 0 8px 24px #0000001a
}

.form-card h2, .success-card h2 {
    color: #0056b3;
    font-size: 1.8rem;
    margin-bottom: 16px
}

.form-card p, .success-card p {
    color: #555;
    margin-bottom: 24px
}

.download-form {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.form-group {
    display: flex;
    flex-direction: column
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 500;
    color: #333
}

input[type=text], input[type=email] {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    color: #000000;
    transition: border-color .2s ease
}

input[type=text]:focus, input[type=email]:focus {
    border-color: #0056b3;
    outline: none
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 8px
}

.checkbox-label {
    font-size: .875rem;
    color: #666;
    line-height: 1.4
}

.checkbox-label a {
    color: #0056b3;
    text-decoration: none
}

.checkbox-label a:hover {
    text-decoration: underline
}

.submit-button, .download-button {
    background-color: #0056b3;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px
}

.submit-button:hover, .download-button:hover {
    background-color: #004494
}

.submit-button:disabled {
    background-color: #ccc;
    cursor: not-allowed
}

.loading-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin .8s linear infinite
}

.success-card {
    text-align: center;
    display: none
}

.success-icon {
    color: #2ecc71;
    font-size: 48px;
    margin-bottom: 16px
}

.download-button {
    background-color: #2ecc71
}

.download-button:hover {
    background-color: #27ae60
}

.footer {
    background-color: #0056b3;
    color: #fff;
    padding: 64px 0 24px
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 48px
}

.footer-logo {
    flex: 1
}

.footer-logo .logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff
}

.footer-logo p {
    color: #ffffffb3;
    max-width: 300px
}

.footer-links {
    display: flex;
    flex: 2;
    justify-content: space-around
}

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

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px
}

.footer-column a {
    color: #ffffffb3;
    margin-bottom: 8px;
    text-decoration: none;
    transition: color .2s ease
}

.footer-column a:hover {
    color: #fff
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .1)
}

.footer-bottom p {
    color: #ffffffb3;
    font-size: .9rem
}

.social-links {
    display: flex;
    gap: 16px
}

.social-links a {
    color: #ffffffb3;
    transition: color .2s ease;
    text-decoration: none
}

.social-links a:hover {
    color: #fff
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #000000e6;
    color: #fff;
    padding: 16px;
    z-index: 1000;
    display: none
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 16px
}

.cookie-content p {
    margin: 0;
    font-size: .9rem
}

.cookie-content a {
    color: #30c8d6;
    text-decoration: none
}

.cookie-content a:hover {
    text-decoration: underline
}

.accept-button {
    background-color: #30c8d6;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color .2s ease;
    white-space: nowrap
}

.accept-button:hover {
    background-color: #28b0bd
}

@media (max-width: 992px) {
    .hero {
        padding: 140px 0 80px
    }

    .hero-title {
        font-size: 2.2rem
    }

    .footer-content {
        flex-direction: column
    }

    .footer-logo {
        margin-bottom: 32px
    }

    .footer-links {
        justify-content: space-between
    }

    .download-content {
        flex-direction: column
    }

    .ebook-preview {
        max-width: 100%
    }
}

@media (max-width: 768px) {
    .navbar-toggle {
        display: flex
    }

    .navbar-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        flex-direction: column;
        align-items: flex-start;
        max-height: 0;
        overflow: hidden;
        transition: max-height .3s ease;
        box-shadow: 0 4px 8px #0000001a
    }

    .navbar-menu.is-active {
        max-height: 300px
    }

    .navbar-end {
        flex-direction: column;
        width: 100%;
        padding: 16px
    }

    .navbar-item {
        margin: 8px 0;
        width: 100%
    }

    .hero .container {
        flex-direction: column
    }

    .hero-content {
        width: 100%;
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center
    }

    .hero-cta {
        justify-content: center
    }

    .hero-image {
        width: 80%
    }

    .testimonial-slides-container {
        height: 350px
    }

    .footer {
        padding: 48px 0 24px
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 32px
    }

    .footer-column {
        min-width: 40%
    }

    .cookie-content {
        flex-direction: column;
        text-align: center
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 120px 0 60px
    }

    .hero-title {
        font-size: 1.8rem
    }

    .hero-subtitle {
        font-size: 1rem
    }

    .hero-cta {
        flex-direction: column
    }

    .hero-image {
        width: 100%
    }

    .testimonial-slides-container {
        height: 400px
    }

    .carousel-arrow {
        width: 32px;
        height: 32px
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center
    }

    .footer-column {
        min-width: 100%;
        margin-bottom: 24px
    }

    .checkbox-group {
        flex-direction: column
    }
}

.download-form .form-group{
    color: #000000;
}