/* Reset styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background: linear-gradient(135deg, #74ebd5 0%, #9face6 100%);
    color: #333;
}

/* Header styles */
header {
    background: rgba(255, 255, 255, 0.9);
    text-align: center;
    padding: 20px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav a {
    text-decoration: none;
    color: #4CAF50;
    font-weight: bold;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s;
}

nav a::after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background: #4CAF50;
    transform: scaleX(0);
    transition: transform 0.3s;
}

nav a:hover {
    color: #ff5722;
}

nav a:hover::after {
    transform: scaleX(1);
}

h1 {
    font-size: 3.5rem;
    margin-top: 10px;
    color: #333;
}

/* Section styles */
section {
    padding: 40px 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}

h2 {
    font-size: 2.5rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

p {
    margin: 20px 0;
    line-height: 1.8;
    letter-spacing: 0.5px;
}

/* Image styles */
img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

img:hover {
    transform: scale(1.05);
}

/* Footer styles */
footer {
    text-align: center;
    padding: 30px 0;
    background: #333;
    color: white;
    border-radius: 15px;
    margin-top: 20px;
}

footer h3 {
    margin-bottom: 20px;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer li {
    display: inline;
    margin: 0 15px;
}

footer img {
    width: 80px;
    transition: transform 0.3s;
}

footer img:hover {
    transform: scale(1.1);
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 2rem;
    }
}
