/* Hero Section Styles */
.hero-section {
    background-color: #f8f9fa;
    padding: 1rem 0;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Text Content */
.hero-text {
    max-width: 600px;
}

.hero-text h1 {
    font-size: 2.35rem;
    color: #2d2495;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
}

.hero-description {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.highlight {
    color: #ff2d55;
    font-weight: 600;
}

/* Features List */
.hero-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: .25rem;
}

.checkmark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #ff2d55;
    border-radius: 50%;
    color: white;
    font-size: 0.875rem;
}

/* Buttons */
.hero-buttons {
    display: flex;
    flex-wrap: wrap; /* Allow buttons to wrap to the next line */
    gap: 1rem; /* Space between buttons */
    justify-content: center; /* Center the buttons horizontally */
    margin: 1rem 0; /* Add spacing above and below the buttons */
}

.hero-buttons a {
    flex: 1 1 auto; /* Allow buttons to grow/shrink and take up available space */
    max-width: 200px; /* Limit button width */
    text-align: center; /* Center text inside the buttons */
    padding: 0.75rem 1.5rem; /* Add spacing inside buttons */
    border-radius: 4px; /* Rounded corners for buttons */
    text-decoration: none; /* Remove underline from links */
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    justify-content: center;
    font-weight: bold;
}

.btn-primary {
    background: #ff2d55;
    color: white;
}

.btn-secondary {
    background: #110d3f;
    color: white;
}

.btn-other {
    background: #1a28a7;
    color: white;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-other:hover {
    background: #00ff00;
}

/* Image Section */
.hero-image {
    position: relative;
    width: 100%;
    height: 500px;
}

.student-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    position: relative;
    z-index: 2;
}

.image-shape {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background: #ff2d55;
    border-radius: 20px;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-text {
        text-align: center;
        margin: 0 auto;
    }

    .hero-text h1 {
        font-size: 2.25rem;
    }

    .hero-features {
        max-width: 500px;
        margin: 0 auto; 
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        height: 400px;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 0;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    /* .hero-buttons {
        flex-direction: column;
    } */

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-image {
        height: 300px;
    }

    .hero-buttons a {
        flex: 1 1 100%; /* Make buttons full width on smaller screens */
        /* max-width: none;  */
    }    
}