/* General styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

h1, h2, h3 {
    color: #3a3a3a;
}

/* Container */
.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

/* Header styles */
header {
    background: #00004A;
    color: white;
    padding: 80px 0;
    text-align: center;
}

header h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

header p {
    font-size: 20px;
}

/* Section styles */
section {
    padding: 40px 0;
}

#about, #services, #contact {
    background-color: white;
    margin-bottom: 20px;
}

#about h2, #services h2, #contact h2 {
    text-align: center;
    margin-bottom: 20px;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.service-item img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
    border-radius: 5px;
}

.service-item h3 {
    font-size: 24px;
    color: #35424a;
}

.service-item p {
    text-align: center;
    max-width: 500px;
}

/* Contact button */
.btn {
    display: inline-block;
    background: #35424a;
    color: white;
    padding: 10px 20px;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
    font-size: 18px;
}

.btn:hover {
    background-color: #e8491d;
}

/* Footer styles */
footer {
    background: #35424a;
    color: white;
    padding: 30px 0;
    text-align: center;
}