/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #FBE9D0;
    background-color: #244855;
    scroll-behavior: smooth;
}

header {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #244855;
    color: #FBE9D0;
    text-align: center;
    flex-direction: column;
    padding: 0 20px;
}

header h1 {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 20px;
}

header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    color: #90AEAD;
}

nav {
    position: fixed;
    top: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
    z-index: 10;
}

nav a {
    text-decoration: none;
    font-size: 1.1rem;
    color: #FBE9D0;
    padding: 10px 20px;
    border-radius: 30px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

nav a:hover {
    background-color: #E64833;
    color: #FBE9D0;
}

/* Section Styles */
section {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 20px;
    min-height: 100vh;
}

section:nth-child(even) {
    background-color: #E64833;
    color: #FBE9D0;
}

section:nth-child(odd) {
    background-color: #244855;
    color: #FBE9D0;
}

section h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

section p {
    max-width: 600px;
    font-size: 1.2rem;
    color: #FBE9D0;
}

/* Image Styles */
img {
    max-width: 80%;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
}

/* Footer Styles */
footer {
    background-color: #874F41;
    color: #FBE9D0;
    padding: 20px 0;
    text-align: center;
    font-size: 1rem;
}

/* Buttons */
button {
    padding: 10px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 30px;
    color: #FBE9D0;
    background-color: #E64833;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

button:hover {
    background-color: #874F41;
    transform: scale(1.05);
}

/* Animations */
section h2, section p {
    animation: fadeIn 1.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
