/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f4f7fc;
    color: #333;
    line-height: 1.6;
    font-size: 16px;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #4C5C68;
    color: white;
}

header .logo h1 {
    font-size: 24px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Hero Section */
#hero {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #1d1d1d, #6f7e89);
    color: white;
}

#hero h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

#hero p {
    font-size: 18px;
    margin-bottom: 40px;
}

.cta-button {
    background-color: #f3a847;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
}

.cta-button:hover {
    background-color: #d78e37;
}

/* Features Section */
#features {
    padding: 60px 20px;
    text-align: center;
    background-color: #ffffff;
}

#features h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.features-container {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.feature {
    width: 250px;
    padding: 20px;
    background-color: #f0f4f8;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.feature h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.feature p {
    font-size: 14px;
}

/* About Section */
#about {
    padding: 60px 20px;
    background-color: #f4f7fc;
    text-align: center;
}

#about h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

/* Contact Section */
#contact {
    padding: 60px 20px;
    background-color: #ffffff;
    text-align: center;
}

#contact h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

/* Footer */
footer {
    padding: 20px;
    background-color: #4C5C68;
    color: white;
    text-align: center;
}
