/* Reset some default styles */
body,
h1,
h2,
p,
ul,
li {
    margin: 0;
    padding: 0;
}

/* Set background color */
body {
    background: #FFFFFF;
    font-family: Arial, sans-serif;
}

/* Header Styles */
header {
    background: #FFFFFF;
    /* White background */
    color: #333333;
    /* Text color */
    padding: 20px 0;
    /* Add drop shadow */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 36px;
    font-weight: bold;
    /* Text shadow for a skeuomorphic effect */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.nav-links li {
    font-size: 18px;
}

.nav-links a {
    text-decoration: none;
    color: #333333;
}

/* Hero Section Styles */
.hero {
    text-align: center;
    padding: 100px 0;
    /* Gradient background */
    /* Lighter to primary color */
    background-color: #FFF7EE;
    /* Add drop shadow */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 24px;
    color: #666666;
    margin-bottom: 40px;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: #3C9EFF;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 20px;
    border-radius: 5px;
    /* Gradient button background */
    background: linear-gradient(to bottom, #80C0FF, #3C9EFF);
    /* Button shadow for a skeuomorphic effect */
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* About Section Styles */
.about {
    background: #FFF7EE;
    padding: 80px 0;
    text-align: center;
    /* Gradient background */
    /* Add drop shadow */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.about h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.about p {
    font-size: 20px;
    color: #333333;
}

/* Features Section Styles */
.features {
    background: #FFF7EE;
    padding: 80px 0;
    text-align: center;
    /* Gradient background */
    /* Add drop shadow */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.features h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.features ul {
    list-style: none;
    padding: 0;
}

.features li {
    font-size: 20px;
    color: #333333;
    margin-bottom: 10px;
}

/* Contact Section Styles */
.contact {
    background: #FFF7EE;
    padding: 80px 0;
    text-align: center;
    /* Gradient background */
    /* Add drop shadow */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.contact p {
    font-size: 20px;
    color: #333333;
    margin-bottom: 20px;
}

/* Footer Styles */
footer {
    background: #FFFFFF;
    /* White background */
    color: #333333;
    /* Text color */
    text-align: center;
    padding: 20px 0;
    /* Add drop shadow */
}

/* Responsive styles for smaller screens */
@media (max-width: 768px) {
    .container {
        padding: 0 10px;
    }

    .hero {
        padding: 80px 0;
    }
}