@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

header {
    background-color: #4a6fa5;
    padding: 20px 0;
    text-align: center;
    color: white;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header .logo h1 {
    font-size: 2.5rem;
}

header nav ul {
    list-style: none;
    padding: 10px 0;
}

header nav ul li {
    display: inline-block;
    margin: 0 20px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 8px 16px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

header nav ul li a:hover {
    background-color: #3b5c87;
    border-radius: 5px;
}

.container {
    width: 75%;
    margin: 0 auto;
    padding: 20px 0;
}

.hero {
    background-color: #e6f0fa; 
    padding: 100px 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.hero-content h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 1.2rem;
    margin: 10px 0 30px;
}

.hero-content button {
    background-color: #4a6fa5;
    color: white;
    padding: 15px 25px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.hero-content button:hover {
    background-color: #3b5c87;
}

section {
    width: 75%;
    margin: 30px auto;
    padding: 40px;
    text-align: left;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

section h2 {
    margin-bottom: 20px;
    font-size: 2rem;
}

section p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.button {
    background-color: #4a6fa5;
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.button:hover {
    background-color: #3b5c87;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
