/* Reset some default styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fafafa;
    color: #333;
    line-height: 1.6;
}

/* Header styling */
header {
    background-color: #adc1ce;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.header-left {
    display: flex;
    align-items: center;
}

.logo {
    height: 100px;
    margin-right: 15px;
}

.site-title {
    color: #ecf0f1;
    font-size: 1.8em;
    font-weight: bold;
}

nav {
    margin-top: 10px;
}

nav a {
    color: #ecf0f1;
    text-decoration: none;
    margin-left: 25px;
    font-weight: 600;
    font-size: 1em;
    transition: color 0.3s;
}

nav a:hover {
    color: #adc1ce;
}

/* Main content styling */
main {
    max-width: 1000px;
    margin: 30px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

h2 {
    color: #b4d4f5;
    margin-bottom: 15px;
    font-size: 2em;
    border-bottom: 2px solid #adc1ce;
    padding-bottom: 10px;
}

p {
    margin-bottom: 15px;
}

/* Footer styling */
footer {
    background-color: #adc1ce;
    color: #ecf0f1;
    text-align: center;
    padding: 15px 20px;
    margin-top: 40px;
    font-size: 0.9em;
}

/* Contact form styling */
form {
    margin-top: 20px;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 12px;
    margin-top: 8px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1em;
}

button {
    margin-top: 15px;
    padding: 12px 25px;
    background-color: #adc1ce;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #adc1ce;
}

/* Responsive adjustments */
@media(max-width: 768px) {
    header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    nav {
        margin-top: 10px;
    }

    nav a {
        margin-left: 15px;
        margin-right: 15px;
    }
}