/* Base styles */
body {
    font-family: 'Readex Pro', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #F4F4F9;
    color: #1D1F25;
}

a {
    color: #1D1F25;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #C26148;
}

.site-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.site-header, .site-footer {
    background-color: #ffffffa6;
    padding: 20px 40px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-inner, .footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.site-title {
    font-size: 32px;
    text-transform: uppercase;
    font-weight: 600;
}

.site-navigation .nav-list {
    list-style: none;
    display: flex;
    gap: 30px;
}

.site-navigation .nav-list li a {
    font-weight: 400;
    font-size: 18px;
    text-transform: uppercase;
}

.site-content {
    flex: 1;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 0;
    background-color: #F4F4F9;
}

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.hero-image {
    flex-shrink: 0;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

.hero-button {
    background-color: #C26148;
    color: #FDFDFD;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    transition: background-color 0.3s;
}

.hero-button:hover {
    background-color: #A44B36;
}

/* About Section */
.about-section {
    background-color: #FFF;
    padding: 60px 20px;
    text-align: center;
    margin-bottom: 64px;
}

.about-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.about-section p {
    font-size: 20px;
    line-height: 1.8;
}

/* Services Section */
.services-section {
    background-color: #F9F9FC;
    padding: 60px 20px;
    text-align: center;
    margin-bottom: 64px;
}

.services-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.services-container {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.service {
    flex: 1;
    max-width: 300px;
    background-color: #FFF;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.service img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.service h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.service p {
    font-size: 18px;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background-color: #C26148;
    color: #FDFDFD;
    padding: 60px 20px;
    text-align: center;
    margin-bottom: 64px;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-button .button {
    background-color: #FFF;
    color: #C26148;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    transition: background-color 0.3s, color 0.3s;
}

.cta-button .button:hover {
    background-color: #FDFDFD;
    color: #A44B36;
}

/* Contact Section */
.contact-section {
    background-color: #FFF;
    padding: 60px 20px;
    text-align: center;
    margin-bottom: 64px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.contact-section h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-section p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 500px;
    margin: 0 auto;
}

.contact-form label {
    font-size: 18px;
    text-align: left;
    margin-bottom: 5px;
}

.contact-form input, .contact-form textarea {
    padding: 15px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: border-color 0.3s;
}

.contact-form input:focus, .contact-form textarea:focus {
    border-color: #C26148;
    outline: none;
}

.contact-form button {
    background-color: #C26148;
    color: #FDFDFD;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #A44B36;
}

/* Imprint Section */
.imprint-section {
    background-color: #FFF;
    padding: 60px 20px;
    text-align: center;
    margin-bottom: 64px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.imprint-section h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.imprint-section p {
    font-size: 20px;
    line-height: 1.8;
}

/* Footer */
.footer-navigation .nav-list {
    list-style: none;
    display: flex;
    gap: 20px;
}

.footer-inner p {
    font-size: 14px;
}

@media (max-width: 768px) {
    .header-inner, .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .site-title {
        margin-bottom: 20px;
    }
    .site-navigation .nav-list {
        flex-direction: column;
        gap: 10px;
    }
    .footer-navigation .nav-list {
        flex-direction: column;
        gap: 5px;
    }
    .hero-section {
        flex-direction: column;
    }
    .hero-image {
        margin-top: 20px;
    }
    .services-container {
        flex-direction: column;
    }
}
