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

header {
    background: #04284B;
    color: #fff;
    padding: 20px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header .logo img {
    max-height: 60px;
}

header .nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

header .nav ul li {
    margin-left: 20px;
}

header .nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

header .nav ul li a:hover {
    color: #FFD700;
}

.hero {
    background: url('/images/hero.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

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

.hero .btn-primary {
    background: #FFD700;
    color: #04284B;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    transition: background 0.3s;
}

.hero .btn-primary:hover {
    background: #FFA500;
}

.services {
    padding: 60px 20px;
    background: #f9f9f9;
    text-align: center;
}

.services h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #04284B;
}

.services-intro {
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.services-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.service-item {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    max-width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item img {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.service-item h3 {
    color: #04284B;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.about-us {
    padding: 60px 20px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.about-content {
    max-width: 500px;
}

.about-content h2 {
    font-size: 2rem;
    color: #04284B;
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.8;
}

.about-image img {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    max-width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.contact {
    padding: 60px 20px;
    background: #f9f9f9;
    text-align: center;
}

.contact h2 {
    font-size: 2rem;
    color: #04284B;
    margin-bottom: 20px;
}

.contact form {
    max-width: 500px;
    margin: 0 auto;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact .form-group {
    margin-bottom: 15px;
}

.contact .form-group input,
.contact .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.contact .btn-submit {
    background: #04284B;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
}

.contact .btn-submit:hover {
    background: #FFD700;
    color: #04284B;
}

.footer {
    background: #04284B;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.footer .footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer .social-icons {
    margin-top: 10px;
}

.footer .social-icons a {
    display: inline-block;
    margin: 0 10px;
    color: #fff;
}

.footer .social-icons img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s;
}

.footer .social-icons img:hover {
    transform: scale(1.1);
}
