/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

h1, h2, h3 {
    font-family: 'Arial', sans-serif;
}

a {
    color: #007BFF;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Header */
header {
    background-color: #005f73;
    color: white;
    padding: 20px;
    text-align: center;
}

header .logo h1 {
    margin: 0;
    font-size: 2.5em;
}

header .logo p {
    font-size: 1.2em;
}

/* Hero Section */
.hero {
    background: #e9d8a6;
    padding: 60px 20px;
    text-align: center;
}

.hero h2 {
    font-size: 2em;
    margin-bottom: 10px;
}

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

.hero .cta-button {
    background-color: #007BFF;
    color: white;
    padding: 15px 30px;
    font-size: 1.2em;
    border-radius: 5px;
}

.hero .cta-button:hover {
    background-color: #005f73;
}

/* Company Status Section */
.company-status {
    background-color: #f1faee;
    padding: 40px 20px;
    text-align: center;
}

.company-status h2 {
    font-size: 2.5em;
    color: #e63946;
    margin-bottom: 20px;
}

.company-status p {
    font-size: 1.2em;
    color: #333;
}

/* Services Section */
.services {
    text-align: center;
    padding: 50px 20px;
}

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

.service {
    margin: 20px;
    display: inline-block;
    width: 30%;
    box-sizing: border-box;
}

.service h3 {
    font-size: 1.8em;
    color: #005f73;
    margin-bottom: 15px;
}

.service p {
    font-size: 1.1em;
    color: #666;
}

/* Contact Section */
.contact {
    background-color: #005f73;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

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

.contact p {
    font-size: 1.2em;
    margin-bottom: 15px;
}

.contact address {
    font-style: normal;
    font-size: 1.2em;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
    position: relative;
    bottom: 0;
    width: 100%;
}
