﻿

/* Hero Section Styles */
.content-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 80px 0;
    margin-bottom: 40px;
}

.content-hero h1 {
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.content-hero .lead {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons .btn {
    margin-right: 15px;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
}

.hero-image {
    position: relative;
}

    .hero-image img {
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        transition: transform 0.5s ease;
    }

    .hero-image:hover img {
        transform: translateY(-10px);
    }

/* Content Section Styles */
.content-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

    .content-description p {
        margin-bottom: 20px;
    }

/* Features Section Styles */
.section-title {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background-color: var(--secondary-color);
    }

.section-subtitle {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(52, 152, 219, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

    .feature-icon i {
        font-size: 2.5rem;
        color: var(--secondary-color);
    }

.feature-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature-content p {
    color: #666;
    margin: 0;
}

/* Benefits Section Styles */
.benefit-item {
    padding: 20px;
    height: 100%;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: rgba(52, 152, 219, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

    .benefit-icon i {
        font-size: 2rem;
        color: var(--secondary-color);
    }

.benefit-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.benefit-item p {
    color: #666;
    margin: 0;
}

/* CTA Section Styles */
.cta-section {
    background-color: var(--light-bg);
    padding: 60px 0;
}

    .cta-section h2 {
        font-weight: 700;
        color: var(--primary-color);
        margin-bottom: 20px;
    }

    .cta-section .lead {
        color: #666;
        margin-bottom: 30px;
    }

.cta-buttons .btn {
    margin: 0 10px;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .content-hero h1 {
        font-size: 2rem;
    }

    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }

    .feature-card {
        margin-bottom: 30px;
    }
}
