/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #6a82fb, #fc5c7d);
    color: white;
    text-align: center;
    min-height: 100vh; /* 85% of viewport height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 20px; /* Adjusted padding */
    position: relative;
}

.hero-section .hero-content h2 {
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 10px;
    color: white;
}

.hero-section .hero-content p {
    font-size: 18px;
    margin-bottom: 20px;
}

/* Call-to-Action Button */
.cta-button {
    background-color: #742080;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.cta-button:hover {
    background-color: #d9c8db;
}
