/* Reset Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

/* Hero Section */
.hero {
    background: #00274d;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}

.hero .cta-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    color: #00274d;
    background: #ffc107;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s;
}

.hero .cta-button:hover {
    background: #e0a800;
}

/* About Section */
.about {
    padding: 50px 20px;
    background: #fff;
    text-align: center;
}

.about h2 {
    margin-bottom: 20px;
    color: #00274d;
}

/* Services Section */
.services {
    padding: 50px 20px;
    background: #f9f9f9;
    text-align: center;
}

.services h2 {
    margin-bottom: 20px;
    color: #00274d;
}

.service-item {
    margin: 20px 0;
}

.service-item h3 {
    color: #00274d;
}

/* Footer */
.footer {
    background: #00274d;
    color: #fff;
    text-align: center;
    padding: 20px 10px;
    margin-top: 20px;
}

.footer a {
    color: #ffc107;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (min-width: 768px) {
    .container {
        width: 80%;
        margin: 0 auto;
    }

    .services {
        display: flex;
        justify-content: space-between;
    }

    .service-item {
        flex: 1;
        margin: 0 10px;
    }
}
