/* About Section */
.about-section {
    padding: 50px 10px;
    background-color: #fff; 
    color: #333;
    margin: auto;
    max-width: 1300px;
}

.about-section h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #e74c3c;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
}

.about-text {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    color: #333;
}

.about-text h3 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #e74c3c; /* Red color for subheading */
}

.about-text p {
    font-size: 1em;
    margin-bottom: 15px;
}

.about-image img {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .about-section h2 {
        font-size: 2.2em;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-text {
        padding: 15px;
    }
}

@media (max-width: 768px) {
    .about-section h2 {
        font-size: 2em;
        margin-bottom: 30px;
    }

    .about-text h3 {
        font-size: 1.5em;
    }

    .about-text p {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .about-section h2 {
        font-size: 1.8em;
    }

    .about-text h3 {
        font-size: 1.2em;
    }

    .about-text p {
        font-size: 0.8em;
    }
}

.cta-button,
.cta-button-large {
    display: inline-block;
    background-color: #e74c3c; /* Red color for buttons */
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover,
.cta-button-large:hover {
    background-color: #c0392b; /* Darker red for hover effect */
    transform: scale(1.05);
}

.cta-wrapper {
    text-align: center;
    margin-top: 50px;
}

.cta-button-large {
    padding: 15px 35px;
    font-size: 1.3em;
}

@media (max-width: 1024px) {
    .cta-wrapper {
        margin-top: 35px;
    }
}

@media (max-width: 768px) {
    .cta-button-large {
        font-size: 1.2em;
        padding: 14px 30px;
    }
}

@media (max-width: 480px) {
    .cta-button-large {
        font-size: 1.1em;
        padding: 12px 25px;
    }
}

/* Placement/Success Stories Section */
.success-stories-section {
    padding: 40px 20px;
    background-color: #fff; /* White background */
    color: #333;
    margin: auto;
    max-width: 1300px;
}

.success-stories-section h2 {
    text-align: center;
    font-size: 2.5em;
    font-weight: 700;
    color: #e74c3c; /* Red color for heading */
    margin-bottom: 40px;
}

.success-stories-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.success-story {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.success-story:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
}

.success-story img {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin-bottom: 15px;
}

.success-story h3 {
    font-size: 1.4em;
    font-weight: 600;
    color: #e74c3c; /* Red color for subheading */
    margin-bottom: 15px;
}

.success-story p {
    font-size: 1.1em;
    color: #7f8c8d;
    margin-bottom: 15px;
}

.cta-button {
    display: inline-block;
    background-color: #e74c3c; /* Red color for CTA button */
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-align: center;
}

.cta-button:hover {
    background-color: #c0392b; /* Darker red for hover effect */
    transform: scale(1.05);
}

.cta-wrapper {
    text-align: center;
    margin-top: 40px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .success-stories-section h2 {
        font-size: 2.2em;
    }

    .cta-wrapper {
        margin-top: 35px;
    }
}

@media (max-width: 768px) {
    .success-stories-section h2 {
        font-size: 2em;
        margin-bottom: 30px;
    }

    .success-story h3 {
        font-size: 1.2em;
    }

    .success-story p {
        font-size: 1em;
    }

    .cta-button {
        font-size: 1em;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .success-stories-section h2 {
        font-size: 1.8em;
    }

    .success-story h3 {
        font-size: 1.1em;
    }

    .success-story p {
        font-size: 0.95em;
    }

    .cta-button {
        font-size: 0.95em;
        padding: 8px 15px;
    }
}

/* Newsletter Signup Section */
.newsletter-section {
    padding: 50px 20px;
    background-color: #e74c3c; /* Red background */
    color: #fff;
    text-align: center;
    margin: auto;
    max-width: 1300px;
    border-radius: 10px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    margin-bottom: 25px;
}

.newsletter-section h2 {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 20px;
}

.newsletter-section p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.newsletter-form input[type="email"] {
    width: 100%;
    max-width: 500px;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    outline: none;
    margin-bottom: 15px;
    color: #333;
    background-color: #fff; /* White background for input field */
}

.newsletter-form button {
    background-color: #fff; /* White background for button */
    color: #e74c3c; /* Red text color for button */
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #f39c12; /* Yellow background for hover effect */
    color: #fff; /* White text color on hover */
    transform: scale(1.05);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .newsletter-section h2 {
        font-size: 2em;
    }

    .newsletter-section p {
        font-size: 1.1em;
    }

    .newsletter-form input[type="email"] {
        font-size: 0.9em;
    }

    .newsletter-form button {
        font-size: 1em;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .newsletter-section h2 {
        font-size: 1.8em;
    }

    .newsletter-section p {
        font-size: 1em;
    }

    .newsletter-form input[type="email"] {
        font-size: 0.8em;
    }

    .newsletter-form button {
        font-size: 0.9em;
        padding: 8px 15px;
    }
}

/* Container for the entire section */
.stats-section {
    background-color: transparent;
    padding: 30px 0;
    text-align: center;
}

/* Container for rows */
.stats-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
}

/* Each item in the stats section */
.stat-item {
    flex: 1 1 calc(25% - 20px);
    margin: 10px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

/* Number styling */
.stat-number {
    font-size: 48px;
    font-weight: bold;
    color: #e74c3c;
    margin-bottom: 10px;
}

/* Text below the number */
.stat-item p {
    font-size: 18px;
    color: #333;
    margin: 0;
}

/* Hover effect */
.stat-item:hover {
    transform: translateY(-10px);
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .stat-item {
        flex: 1 1 calc(50% - 20px); /* 2 items in a row on smaller screens */
    }
}
