/* Hero section container */
.hero-section {
    position: relative;
    height: 100vh; /* Full height of the screen */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

/* Content inside the hero section */
.hero-content {
    position: relative;
    z-index: 1; /* Ensure text stays above the background image */
    padding: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6); /* Text shadow for better visibility */
}

/* Styling for the title */
.hero-section h1 {
    color: white;
    font-size: 60px;  /* Increased font size */
    font-weight: 700;
    margin: 0;
    line-height: 1.2;  /* Adjust line height for better readability */
}

/* Styling for the subtitle */
.hero-section p {
    font-size: 24px;
    margin-top: 15px; /* Space between title and subtitle */
    font-weight: 300;
    letter-spacing: 1px; /* Optional: add some letter spacing */
}

/* Dark overlay to make text more readable */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
   
    z-index: -1; /* Put overlay behind text */
}

/* Content Section Below the Hero Section */
.content-section {
    padding: 60px 40px;
    text-align: center;
    max-width: 960px;
    margin: 0 auto;
    border-radius: 20px;
}

.content-section h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.content-section h3 {
    font-size: 28px;
    font-weight: bold;
    margin-top: 25px;
}

.content-section p {
    font-size: 18px;
    line-height: 1.6;
    margin: 0 auto 25px;
    color: #555;
    max-width: 820px;
}

.content-section ul {
    text-align: left;
    margin: 20px auto 0;
    padding-left: 28px;
    max-width: 820px;
}

.content-section ul li {
    margin-bottom: 12px;
    line-height: 1.6;
}

/* Cards Section */
.cards-section {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 50px 40px;
    background-color: #fff;
    max-width: 1100px;
    margin: 0 auto 60px;
    flex-wrap: wrap;
}

.card {
    flex: 1 1 280px;
    padding: 24px;
    margin: 8px;
    background-color: #e6f4f1;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.card-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.card h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}
