/* Global Styles */
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styles */
.header {
    background-color: #0078D7;
    color: white;
    padding: 1rem 0;
    position: relative;
}

.header .logo {
    font-size: 1.8rem;
    font-weight: 700;
}

.header .nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 1rem;
    transition: max-height 0.3s ease-in-out;
    overflow: hidden;
    max-height: 200px;
}

.header .nav ul.active {
    max-height: 200px;
}

.header .nav ul.hidden {
    max-height: 0;
}

.header .nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.header .nav a:hover {
    text-decoration: underline;
}

.nav-toggle {
    display: none;
    background-color: #0078D7;
    border: none;
    color: white;
    font-size: 1.5rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.nav-toggle:focus {
    outline: none;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .header .nav ul {
        flex-direction: column;
        max-height: 0;
        overflow: hidden;
    }

    .header .nav ul.active {
        max-height: 300px;
    }
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 3rem 1rem;
    background-color: #f1f1f1;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #0078D7;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.btn-primary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #0078D7;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #005bb5;
}

/* Features Section */
.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 2rem 0;
}

.feature {
    flex: 1 1 calc(33.333% - 1rem);
    background-color: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.feature h3 {
    margin-bottom: 0.5rem;
    color: #0078D7;
}

/* Footer Styles */
.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
}

.footer p {
    margin: 0;
    font-size: 0.9rem;
}
