body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styling */
.site-header {
    background-color: #1a1a1a;
    color: #fff;
    padding: 15px 0;
}

.site-header .logo a {
    text-decoration: none;
    color: #fff;
    font-size: 1.5rem;
}

/* Footer */
.site-footer {
    background-color: #1a1a1a;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}
/* General Styles */
body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background: #0044cc;
    color: #fff;
    padding: 10px 0;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-header .logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.site-header .site-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.site-header .site-nav ul li {
    margin: 0 10px;
}

.site-header .site-nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.site-header .site-nav ul li a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    background: #f4f4f4;
    text-align: center;
    padding: 50px 20px;
    margin-bottom: 20px;
}

.hero h1 {
    margin: 0;
    font-size: 2.5rem;
    color: #0044cc;
}

.hero p {
    margin: 10px 0 20px;
    font-size: 1.2rem;
}

.hero .btn {
    background: #0044cc;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
}

.hero .btn:hover {
    background: #003399;
}

/* Features Section */
.features {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 20px 0;
    text-align: center;
}

.features .feature {
    flex: 1;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.features .feature h2 {
    margin: 0 0 10px;
    font-size: 1.5rem;
}

.features .feature p {
    margin: 0;
    color: #666;
}

/* Footer */
.site-footer {
    background: #333;
    color: #fff;
    padding: 20px 0;
    margin-top: auto;
    text-align: center;
}

.site-footer .container {
    display: block;
    margin: 0 auto;
}

.site-footer .footer-info {
    text-align: center;
    margin: 0;
}

.site-footer .footer-info p {
    margin: 5px 0;
}

.site-footer .footer-info ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.site-footer .footer-info ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
}

.site-footer .footer-info ul li a:hover {
    text-decoration: underline;
}
/* Forms */
form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

form label {
    font-weight: bold;
}

form input, form textarea, form select, form button {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

form textarea {
    resize: none;
    height: 100px;
}

form button {
    background: #0044cc;
    color: #fff;
    font-weight: bold;
    border: none;
    cursor: pointer;
}

form button:hover {
    background: #003399;
}

