/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
}

/* Headings */
h1, h2, h3 {
    color: #222;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: #007BFF;
}

p {
    color: #555;
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #007BFF;
    color: white;
    border-radius: 5px;
    font-size: 1rem;
    transition: background-color 0.3s, transform 0.3s;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.2);
}

.cta-button:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

/* Introduction Section */
.intro-section {
    background-color: #f0f4f8;
    padding: 50px 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.intro-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    align-items: center;
}

.intro-image {
    max-width: 50%;
    flex: 1 1 45%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.intro-text {
    flex: 1 1 45%;
    max-width: 600px;
    animation: fadeIn 1s ease-in-out;
}

/* Animations */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease-in-out forwards;
}

.animate-slide-in {
    animation: slideIn 1s ease-in-out forwards;
}

.animate-fade-up {
    animation: fadeUp 1s ease-in-out forwards;
}

.animate-bounce {
    animation: bounce 2s infinite;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .intro-container {
        flex-direction: column;
        text-align: center;
    }
}

/* Cards Section */
.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Card Style */
.card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

/* Success Stories */
.success-stories {
    background-color: #e9ecef;
    padding: 50px 20px;
    text-align: center;
}

.stories-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.story {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    animation: fadeUp 1s ease-in-out forwards;
}

/* CTA Section */
.cta-section {
    padding: 50px 20px;
    text-align: center;
    background-color: #007BFF;
    color: white;
}

.cta-card {
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    animation: fadeIn 1s ease-in-out forwards;
}
