header {
    background-color: var(--primary-color);
    color: #fff;
    padding: 1rem 0;
    box-shadow: 0 4px 8px var(--shadow-medium); /* Stronger shadow */
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    margin: 0;
    font-size: 1.9rem; /* Slightly larger heading */
    font-weight: 700; /* Bolder */
}

header nav ul {
    list-style: none;
    display: flex;
}

header nav ul li {
    margin-left: 25px; /* More space between links */
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease, transform 0.2s ease; /* Add transform for subtle effect */
    position: relative; /* For underline effect */
}

header nav ul li a:hover {
    color: var(--accent-color); /* Highlight with accent color */
    transform: translateY(-2px); /* Subtle lift */
}

/* Optional: Underline effect on hover */
header nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

header nav ul li a:hover::after {
    width: 100%;
}

main {
    flex: 1;
    padding: 2rem 0;
}

section {
    background-color: var(--card-bg);
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 10px; /* Slightly more rounded corners */
    box-shadow: 0 6px 20px var(--shadow-medium); /* More pronounced shadow for sections */
}

.hero-section {
    text-align: center;
    padding: 90px 20px; /* Increased padding */
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%); /* Use primary color shades */
    color: #fff;
    border-radius: 10px;
    margin-bottom: 30px;
    display: flex; /* Use flex for content centering */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative; /* For potential background elements */
    overflow: hidden;
}

.hero-section h2 {
    font-size: 3.2rem; /* Larger font size for main heading */
    margin-bottom: 25px;
    font-weight: 700;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4); /* Stronger text shadow */
    line-height: 1.2;
}

.hero-section p {
    font-size: 1.4rem; /* Larger description text */
    max-width: 800px; /* Adjusted width */
    margin: 0 auto 40px auto; /* More margin below paragraph for button */
    font-weight: 300; /* Lighter weight for readability */
}

.btn-primary {
    display: inline-block;
    background-color: var(--accent-color); /* Green button */
    color: #fff;
    padding: 16px 32px; /* Slightly larger padding */
    border-radius: 50px; /* Pill-shaped button */
    text-decoration: none;
    font-size: 1.15rem; /* Slightly larger font */
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px var(--shadow-strong); /* Stronger shadow */
}

.btn-primary:hover {
    background-color: var(--accent-dark); /* Darker green on hover */
    transform: translateY(-4px); /* More pronounced lift */
    box-shadow: 0 8px 25px var(--shadow-strong); /* Stronger shadow on hover */
}

.card-management-section h2, .about-section h2 {
    text-align: center;
    margin-bottom: 35px; /* More space below section title */
    color: var(--primary-color);
    font-size: 2.2rem; /* Slightly larger section titles */
    font-weight: 700;
}

footer {
    background-color: var(--primary-color);
    color: #fff;
    text-align: center;
    padding: 1.8rem 0; /* More padding */
    margin-top: auto; /* Pushes footer to the bottom */
    box-shadow: 0 -4px 8px var(--shadow-medium); /* Stronger shadow */
}

footer p {
    margin: 0;
    font-size: 0.95rem; /* Slightly larger footer text */
    font-weight: 300;
}