/* General styles */
body {
    font-family: 'Lora', serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.service-item > p {
    height: 120px;
}

header {
    background: #192a3b;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
}

header .logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin: 0;
}

header .logo p {
    font-family: 'Lora', serif;
    font-size: 1.2rem;
    margin: 0.5rem 0;
    font-weight: 300;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline;
    margin: 0 1rem;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

/* Main content styles */
main {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #00509e;
    margin-bottom: 1rem;
}

p {
    font-family: 'Lora', serif;
    font-size: 1rem;
    line-height: 1.8;
}

/* About section */
#about {
    margin-bottom: 2rem;
}

#about img {
    display: block;
    max-width: 100%;
    width: 600px;
    height: 300px;
    object-fit: cover;
    margin: 1rem auto;
    border-radius: 8px;
}

/* Services section */
.service-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-item {
    text-align: center;
    width: 280px;
    padding: 1rem;
    background: #f4f4f4;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

.service-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.service-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.service-item p {
    font-family: 'Lora', serif;
    font-size: 0.95rem;
}

form {
    font-family: 'Lora', serif;
    background: #f4f4f4;
    padding: 1.5rem;
    max-width: 400px;
    margin: 2rem auto;
    border-radius: 8px;
    border: 1px solid #ddd;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

form input, form textarea {
    width: calc(100% - 1.5rem); /* Add padding space for right and left */
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: 'Lora', serif;
    font-size: 0.95rem;
}

form textarea {
    resize: vertical;
}

form button {
    display: block;
    width: 100%;
    padding: 0.75rem;
    background: #00509e;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

form button:hover {
    background: #003f7e;
}

/* Footer styles */
footer {
    background: #00509e;
    color: #fff;
    padding: 1rem;
    text-align: center;
    font-family: 'Lora', serif;
    font-size: 0.9rem;
    margin-top: 2rem;
}

.logoContainer {
    margin: 0 2rem;
}

.logo {
    width: 599px;
    height: 117px;
    background: url(./logo2.png) no-repeat center;
    background-size: contain;
    max-width: 100%;
    display: block;
    margin: 0 auto 3em;
}
