﻿.hero {
    background-color: #0056b3;
    background-image: linear-gradient(135deg, #0056b3 0%, #003366 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

    .hero h1 {
        font-size: 2.8rem;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .hero p {
        font-size: 1.2rem;
        margin-bottom: 30px;
        max-width: 600px;
    }

.hero-buttons .btn {
    margin-right: 15px;
    margin-bottom: 15px;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 5px;
}

.hero-image {
    text-align: center;
}

    .hero-image img {
        max-width: 100%;
        height: auto;
    }

.features-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.feature-box {
    text-align: center;
    padding: 30px 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    height: 100%;
}

    .feature-box:hover {
        transform: translateY(-10px);
    }

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background-color: #e9f5ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #0056b3;
}

.testimonials-section {
    padding: 80px 0;
    background-color: white;
}

.testimonial-box {
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    background-color: white;
}

    .testimonial-box::before {
        content: '\201C';
        position: absolute;
        top: 20px;
        left: 20px;
        font-size: 80px;
        color: #e9f5ff;
        font-family: Arial, sans-serif;
        line-height: 1;
    }

.testimonial-content {
    position: relative;
    z-index: 1;
    font-style: italic;
}

.testimonial-author {
    margin-top: 20px;
    display: flex;
    align-items: center;
}

    .testimonial-author img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        margin-right: 15px;
    }

.pricing-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.pricing-box {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .pricing-box:hover {
        transform: translateY(-10px);
    }

.pricing-header {
    padding: 20px;
    background-color: #0056b3;
    color: white;
    text-align: center;
}

.pricing-features {
    padding: 30px;
    flex-grow: 1;
}

    .pricing-features ul {
        list-style: none;
        padding: 0;
        margin: 0 0 20px 0;
    }

        .pricing-features ul li {
            padding: 10px 0;
            border-bottom: 1px solid #eee;
        }

            .pricing-features ul li:last-child {
                border-bottom: none;
            }

    .pricing-features .btn {
        width: 100%;
        padding: 12px;
        font-weight: 600;
    }

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

    .section-title h2 {
        font-weight: 700;
        position: relative;
        display: inline-block;
        margin-bottom: 15px;
    }

        .section-title h2::after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            background-color: #0056b3;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

    .section-title p {
        max-width: 700px;
        margin: 0 auto;
        color: #6c757d;
    }

/* Media query for mobile devices */
@media (max-width: 768px) {
    .hero {
        text-align: center;
        padding: 50px 0;
    }

        .hero h1 {
            font-size: 2.2rem;
        }

        .hero p {
            font-size: 1rem;
            margin: 0 auto 30px;
        }

    .hero-image {
        margin-top: 30px;
    }
}
