/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #fff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styles */
header {
    background-color: #ff0000;
    color: #fff;
    padding: 15px 0;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 1.8em;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

nav ul li {
    margin: 5px 10px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9em;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Hero Section Styles */
.hero {
    background-color: #fff;
    color: #333;
    text-align: center;
    padding: 50px 0;
}

.hero h2 {
    font-size: 2em;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1em;
    margin-bottom: 20px;
}

.hero .btn {
    background-color: #ff0000;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    font-size: 0.9em;
}

.hero .btn:hover {
    background-color: #cc0000;
}

/* Slider Section Styles */
.slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slides img {
    width: 100%;
    display: none; /* Hide all images by default */
}

/* Favorites Section Styles */
.favorites {
    background-color: #fff;
    padding: 30px 0;
    text-align: center;
}

.favorites h2 {
    font-size: 1.8em;
    margin-bottom: 15px;
}

.favorites ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.favorites ul li {
    margin: 10px 0;
}

.favorites ul li a {
    color: #ff0000;
    text-decoration: none;
    font-size: 1em;
}

.favorites ul li a:hover {
    text-decoration: underline;
}

/* Footer Styles */
footer {
    background-color: #ff0000;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    margin-top: 30px;
}

footer p {
    margin: 0;
    font-size: 0.9em;
}