* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
}

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

header {
    background-color: #005f87;
    color: white;
    padding: 20px 0;
}

header h1 {
    font-size: 2.5em;
    text-align: center;
}

nav ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
}

nav ul li a:hover {
    text-decoration: underline;
}

.section {
    padding: 60px 0;
    background-color: white;
}

h2 {
    font-size: 2em;
    color: #005f87;
    margin-bottom: 20px;
    text-align: center;
}

p {
    font-size: 1.1em;
    margin-bottom: 20px;
}

.services-list {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.service {
    background-color: #e6f1f8;
    padding: 20px;
    border-radius: 8px;
    flex: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.service h3 {
    font-size: 1.5em;
    color: #005f87;
    margin-bottom: 10px;
}

.service img {
    width: 100%;
}

.service {
    transition: 0.2s;
}

.service:hover {
    transform: scale(1.02);
    cursor: pointer;
}

.gallery {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.gallery img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.gallery a img {
    transition: 0.2s;
}

.gallery a img:hover {
    transform: scale(1.02);
}

.contact-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.contact-info {
    flex: 1;
    background-color: #e6f1f8;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    min-width: 280px;
}

.contact-info h3 {
    font-size: 1.5em;
    color: #005f87;
    margin-bottom: 15px;
}

.contact-info p {
    font-size: 1.1em;
    margin-bottom: 10px;
    display: grid;
    grid-template-columns: 120px 1fr;
}

.contact-form {
    flex: 1;
    background-color: #e6f1f8;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    min-width: 280px;
}

@keyframes blink {
    0%   { box-shadow: 0 0 0 0 rgba(0, 95, 135, 0); }
    50%  { box-shadow: 0 0 10px 3px rgba(0, 95, 135, 0.8); }
    100% { box-shadow: 0 0 0 0 rgba(0, 95, 135, 0); }
}

.mark {
     animation: blink 2s ease;
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

form label {
    font-size: 1.1em;
    color: #333;
    margin: 0;
}

form select {
    padding: 10px;
    font-size: 1em;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: white;
    color: #333;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

form select::-ms-expand {
    display: none;
}

form select:focus {
    border-color: #005f87;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 95, 135, 0.6);
}

form input,
    form textarea {
        padding: 10px;
        font-size: 1em;
        border: 1px solid #ddd;
        border-radius: 5px;
    }

    form textarea {
        min-height: 100px;
        max-height: 400px;
        resize: vertical;
    }

    form button {
        background-color: #005f87;
        color: white;
        padding: 10px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-size: 1.1em;
    }

    form button:hover {
        background-color: #00406a;
    }

    footer {
        background-color: #005f87;
        color: white;
        padding: 20px 0;
        text-align: center;
    }

@media (max-width: 768px) {
    .contact-container, .services-list, .gallery {
        flex-direction: column;
    }
}
