﻿/* General Layout */
.modern-main {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f7f9fb;
    padding: 0;
    min-height: 100vh;
}

/* Hero Section */
.modern-hero {
    background: linear-gradient(90deg, #4f8cff 0%, #38c6fa 100%);
    color: #fff;
    padding: 48px 0 32px 0;
    border-radius: 0 0 24px 24px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    margin-bottom: 40px;
}

.modern-hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 32px;
}

    .modern-hero-content > div {
        flex: 1 1 350px;
    }

.modern-hero-img {
    max-width: 340px;
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.10);
    margin-left: 16px;
}

/* Call to Action Button */
.modern-btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 1.15em;
    background: #fff;
    color: #4f8cff;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    transition: background 0.2s, color 0.2s;
    margin-top: 24px;
    cursor: pointer;
}

    .modern-btn-hover,
    .modern-btn:hover {
        background: #4f8cff;
        color: #fff;
    }

    /* Small button for carousel */
    .modern-btn.small {
        padding: 6px 16px;
        font-size: 1.2em;
        border-radius: 50%;
        min-width: 40px;
        min-height: 40px;
    }

/* Section Titles */
.modern-section-title {
    text-align: center;
    font-size: 2em;
    color: #4f8cff;
    margin-bottom: 32px;
    margin-top: 0;
}

/* Features Section */
.modern-features {
    max-width: 1100px;
    margin: 0 auto 48px auto;
    padding: 0 16px;
}

.modern-modules {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.modern-module {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    padding: 32px 24px;
    width: 240px;
    text-align: center;
    margin-bottom: 20px;
    transition: transform 0.2s;
}

    .modern-module:hover {
        transform: translateY(-6px) scale(1.03);
        box-shadow: 0 6px 24px rgba(79,140,255,0.12);
    }

.modern-module-img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    margin-bottom: 16px;
}

.modern-module h3 {
    color: #4f8cff;
    margin-bottom: 12px;
    font-size: 1.2em;
}

.modern-module ul {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #444;
    font-size: 1em;
}

    .modern-module ul li {
        margin-bottom: 8px;
    }

/* Benefits Section */
.modern-benefits {
    background: #eaf4ff;
    padding: 48px 0;
    margin-bottom: 48px;
}

.modern-benefits-list {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.modern-benefit {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    padding: 28px 20px;
    width: 220px;
    text-align: center;
}

    .modern-benefit img {
        width: 48px;
        height: 48px;
        object-fit: contain;
        margin-bottom: 12px;
    }

    .modern-benefit h4 {
        color: #38c6fa;
        margin-bottom: 8px;
        font-size: 1.1em;
    }

    .modern-benefit p {
        color: #444;
        font-size: 0.98em;
    }

/* Testimonials Section */
.modern-testimonials {
    max-width: 900px;
    margin: 0 auto 48px auto;
    padding: 0 16px;
}

.modern-testimonial-list {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    position: relative;
    min-height: 220px;
}

.modern-testimonial {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    padding: 32px 24px;
    width: 320px;
    text-align: center;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modern-testimonial-img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(56,198,250,0.10);
}

.modern-testimonial blockquote {
    font-style: italic;
    color: #333;
    margin-bottom: 12px;
}

.modern-testimonial span {
    color: #4f8cff;
    font-weight: 500;
    font-size: 1em;
}

/* Carousel Navigation */
.modern-testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 12px;
}

/* Responsive Design */
@media (max-width: 900px) {
    .modern-hero-content,
    .modern-modules,
    .modern-benefits-list,
    .modern-testimonial-list {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .modern-hero-img {
        margin-left: 0;
        margin-top: 24px;
    }
}
