/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 20px 0;
}

/* Header */
header {
    background: #004080;
    color: #fff;
    padding: 20px 0;
}

header .logo h1 {
    display: inline;
    font-size: 24px;
}

nav {
    float: right;
}

nav ul {
    list-style: none;
}

nav ul li {
    display: inline;
    margin-left: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

@media (max-width: 768px) {
    nav {
        float: none;
        text-align: center;
    }
    nav ul li {
        display: block;
        margin: 10px 0;
    }
}

/* Hero Section */
.hero {
    background: url('hero-image.jpg') no-repeat center center/cover;
    color: #fff;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #ff6600;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin-right: 10px;
    transition: background 0.3s;
}

.btn-secondary {
    background: #0066cc;
}

.btn:hover {
    background: #e65c00;
}

.btn-secondary:hover {
    background: #005bb5;
}

/* Services Section */
.services {
    padding: 60px 0;
    background: #f4f4f4;
    text-align: center;
}

.services h2 {
    margin-bottom: 40px;
    font-size: 32px;
}

.service-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.service {
    background: #fff;
    padding: 20px;
    margin: 10px;
    flex: 1 1 45%;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.service h3 {
    margin-bottom: 15px;
    color: #004080;
}

@media (max-width: 768px) {
    .service {
        flex: 1 1 100%;
    }
}

/* About Section */
.about {
    padding: 60px 0;
    text-align: center;
}

.about h2 {
    margin-bottom: 20px;
    font-size: 32px;
}

.about p {
    margin-bottom: 20px;
    font-size: 18px;
}

.about ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.about ul li {
    margin: 10px 20px;
    font-weight: bold;
}

/* Features Section */
.features {
    padding: 60px 0;
    background: #f4f4f4;
    text-align: center;
}

.features h2 {
    margin-bottom: 40px;
    font-size: 32px;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.feature {
    background: #fff;
    padding: 20px;
    margin: 10px;
    flex: 1 1 30%;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.feature h4 {
    margin-bottom: 10px;
    color: #004080;
}

@media (max-width: 768px) {
    .feature {
        flex: 1 1 100%;
    }
}

/* Community Section */
.community {
    padding: 60px 0;
    text-align: center;
}

.community h2 {
    margin-bottom: 20px;
    font-size: 32px;
}

.community p {
    font-size: 18px;
}

/* Support Section */
.support {
    padding: 60px 0;
    background: #f4f4f4;
    text-align: center;
}

.support h2 {
    margin-bottom: 20px;
    font-size: 32px;
}

.support p {
    margin-bottom: 20px;
    font-size: 18px;
}

.support ul {
    list-style: none;
    font-size: 18px;
}

.support ul li {
    margin: 10px 0;
}

/* Contact Section */
.contact {
    padding: 60px 0;
    text-align: center;
}

.contact h2 {
    margin-bottom: 20px;
    font-size: 32px;
}

.contact form {
    max-width: 600px;
    margin: auto;
}

.contact input, .contact textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact .btn {
    width: 100%;
    padding: 15px;
}

/* Footer */
footer {
    background: #004080;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer-content div {
    margin: 10px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-contact a {
    color: #ff6600;
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
    }
}
