/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9; /* Soft neutral background */
}

a {
    text-decoration: none;
    color: #FF6F3C; /* Primary orange */
}

a:hover {
    text-decoration: underline;
}

h1, h2, h3 {
    margin: 0;
    font-weight: bold;
}

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

/* Header */
header {
    background: #FF6F3C; /* Primary orange */
    color: #fff;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header #logo h1 {
    font-size: 1.5rem;
    margin: 0;
}

header nav ul {
    display: flex;
    gap: 20px;
}

header nav ul li a {
    color: #fff;
    font-weight: bold;
}

/* Hero Section */
#hero {
    background: #FF6F3C; /* Primary orange */
    color: #fff;
    text-align: center;
    padding: 50px 20px;
}

#hero .content {
    max-width: 600px;
    margin: 0 auto;
}

#hero h1 {
    font-size: 2.5rem;
}

#hero p {
    margin: 20px 0;
    font-size: 1.2rem;
}

#hero .button {
    display: inline-block;
    background: #fff;
    color: #FF6F3C;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 20px;
}

#hero .button:hover {
    background: #FFE1D3; /* Light coral */
}

/* Featured Section */
#featured {
    background: #fff;
    padding: 50px 20px;
    text-align: center;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

#featured h2 {
    font-size: 2rem;
    color: #FF6F3C; /* Orange */
    margin-bottom: 20px;
}

#featured .cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

#featured .card {
    background: #f9f9f9; /* Light neutral background */
    padding: 20px;
    width: 250px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-top: 4px solid #FF6F3C; /* Orange accent */
}

#featured .button {
    display: inline-block;
    margin-top: 20px;
    background: #FF6F3C;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
}

#featured .button:hover {
    background: #E65C2F; /* Darker orange */
}

/* About Section */
#about {
    background: #FFE1D3; /* Light coral background */
    padding: 50px 20px;
    text-align: center;
    margin: 20px auto;
    border-radius: 10px;
}

#about h2 {
    font-size: 2rem;
    color: #FF6F3C; /* Orange */
    margin-bottom: 20px;
}

#about p {
    max-width: 600px;
    margin: 0 auto 20px auto;
    font-size: 1.1rem;
    color: #333;
}

#about .button {
    display: inline-block;
    background: #FF6F3C;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
}

#about .button:hover {
    background: #E65C2F; /* Darker orange */
}

/* Footer */
footer {
    background: #FF6F3C; /* Primary orange */
    color: #fff;
    text-align: center;
    padding: 20px;
}

footer ul {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 10px 0;
}

footer ul li a {
    color: #fff;
    font-weight: bold;
}

footer ul li a:hover {
    color: #FFE1D3; /* Light coral */
}

footer p {
    margin: 5px 0;
}
