:root {
    --primary-color: #82C9C3;
    --secondary-color: #F2B8A2;
    --text-color: #333333;
    --background-color: #F8F8F8;
    --highlight-color: #F28A72;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
}

header {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s;
}

header.scrolled {
    background-color: var(--secondary-color);
}

header .logo {
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    color: white;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin: 0 1rem;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--highlight-color);
}

.hero {
    height: 100vh;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: fadeIn 1.5s ease-in;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    animation: fadeIn 1.8s ease-in;
}

.hero a {
    text-decoration: none;
    background-color: var(--highlight-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.hero a:hover {
    background-color: var(--secondary-color);
}

footer {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    text-align: center;
}

footer a {
    color: var(--highlight-color);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.content {
    padding: 2rem;
    max-width: 800px;
    margin: 2rem auto;
    text-align: left;
}

.content h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.content ul {
    list-style: none;
    padding: 0;
}

.content ul li {
    background: var(--background-color);
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    border-left: 5px solid var(--primary-color);
    color: var(--text-color);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
