@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/opensans.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ccc;
    color: #000;
    top: 100px;
}

a:link {
    color: #0044cc;
}

a:visited {
    color: #0044cc;
}

ul {
    margin-left: 20px;
    padding-left: 20px;
}

li {
    margin-bottom: 8px;
}

/* Header styles */
.header {
    text-align: center;
    padding: 40px 20px 0px 20px;
}

.header.relative {
    position: relative;
    padding: 0;
}

.logo {
    height: 80px;
    margin-bottom: 20px;
}

.logo.absolute {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 150px;
    height: auto;
    margin-bottom: 0;
}

.background-image {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    display: block;
}

/* Content styles */
.content {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background-color: #e0e0e0;
    border-radius: 12px;
}

.content.wide {
    max-width: 900px;
    padding: 0px;
    background-color: transparent;
    border-radius: 0;
}

/* Typography */
h1 {
    font-family: 'Righteous', cursive;
    font-weight: 400;
    font-size: 30px;
    color: #444;
    text-align: center;
    margin-top: 0;
    margin-bottom: 20px;
}

h2 {
    font-family: 'Righteous', cursive;
    font-weight: 400;
    font-size: 26px;
    color: #ff7700;
    margin-top: 30px;
}

.formkit-header h2 {
    font-family: 'Open Sans', Arial, sans-serif;
    font-weight: 700;
}

.intro-text {
    font-size: 16px;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.6;
}

.highlight {
    color: #ff7700;
    font-family: 'Righteous', cursive;
}

/* Home page specific styles */
.home-title {
    font-family: 'Righteous', cursive;
    font-weight: 400;
    font-size: 48px;
    color: #444;
}

.home-section-title {
    font-family: 'Righteous', cursive;
    font-weight: 400;
    font-size: 26px;
    color: #ff7700;
    padding-top: 20px;
}

.home-section-subtitle {
    font-weight: 400;
    font-size: 20px;
    color: #444;
}

.home-text {
    font-weight: 400;
    font-size: 14px;
    color: #444;
}

/* Form styles */
.contact-form {
    padding: 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    color: #000;
    margin-bottom: 8px;
    font-weight: bold;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 20px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #000;
    background-color: #fff;
    color: #000;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 14px;
    box-sizing: border-box;
    border-radius: 4px;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #000;
    background-color: #fff;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23000' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 35px;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-button {
    background-color: #ff7700;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    font-family: 'Open Sans', Arial, sans-serif;
    text-align: center;
    width: 100%;
}

.submit-button:hover {
    background-color: #e66a00;
}

.submit-button:disabled {
    background-color: #999;
    cursor: not-allowed;
}

.message {
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 20px;
    text-align: center;
    font-size: 14px;
}

.message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.message.hidden {
    display: none;
}

/* WordPress block styles (for consultation page) */
.wp-block-columns {
    display: flex;
    margin: 20px 0;
}

.wp-block-column {
    flex: 1;
    margin: 0 10px;
    padding: 15px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.has-background {
    padding: 15px;
    border-radius: 5px;
    margin: 20px 0;
}

.has-mbt-tertiary-light-yellow-background-color {
    background-color: #fff3cd;
}

.has-large-font-size {
    font-size: 24px;
    font-weight: bold;
    color: #ff7700;
}

.wp-block-button__link {
    display: inline-block;
    background-color: #ff7700;
    color: #fff !important;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
}

/* Utility classes */
.text-center {
    text-align: center;
}

iframe {
    border: none;
}

.center {
    text-align: center;
}

.form-group.text-center {
    text-align: center;
}

