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

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

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: #a32e3f;
    padding: 20px 0;
    text-align: center;
}

.brand {
    color: #fff;
    font-weight: bold;
    font-size: 1rem;
    letter-spacing: 1px;
}

/* Hero */
.hero {
    background-color: #a32e3f;
    color: #fff;
    padding: 80px 0 60px;
    text-align: right;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: bold;
    line-height: 1.2;
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 2rem;
    }
}

/* Mission Section */
.mission {
    padding: 60px 0;
}

.mission h2 {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #111;
}

.mission p {
    margin-bottom: 20px;
    font-size: 1rem;
}

.btn-outline {
    display: inline-block;
    border: 1px solid #a32e3f;
    color: #a32e3f;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: #a32e3f;
    color: #fff;
}

/* Values section */
.values {
    background-color: #a32e3f;
    color: #fff;
    padding: 60px 20px;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.value-box {
    flex: 1 1 250px;
    background-color: #fff;
    color: #000;
    padding: 20px;
    border-radius: 6px;
}

.value-box h3 {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.value-box p {
    font-size: 0.95rem;
}

/* Blog Section */
.blog {
    padding: 60px 20px;
}

.blog-title {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 40px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.blog-card {
    background: #fff;
}

.blog-card img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 15px;
}

.blog-card h3 {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.blog-card p {
    font-size: 0.95rem;
}

/* Mission alternative block */
.mission-alt {
    padding: 80px 20px;
}

.mission-alt-content {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

.mission-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
}

.mission-text {
    flex: 1 1 400px;
}

.mission-text h2 {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.mission-text p {
    margin-bottom: 20px;
}

/* Testimonials */
.testimonials {
    background-color: #fafafa;
    padding: 60px 20px;
}

.testimonials-title {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 40px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: #fff;
    padding: 25px;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonial-card .quote {
    font-size: 2.5rem;
    color: #a32e3f;
    position: absolute;
    top: 10px;
    left: 15px;
}

.testimonial-card p {
    padding-left: 25px;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.testimonial-card strong {
    display: block;
    padding-left: 25px;
    font-weight: bold;
    color: #222;
}

/* Responsive */
@media (max-width: 768px) {
    .mission-alt-content {
        flex-direction: column;
        align-items: center;
    }

    .mission-image img {
        max-width: 100%;
    }
}

/* FAQ Section */
.faq {
    background-color: #a32e3f;
    color: #fff;
    padding: 60px 20px;
}

.faq h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

.faq-item {
    background-color: #fff;
    color: #000;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.faq-item h3 {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 0.95rem;
}

/* Contact Form */
.contact {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
}

.contact h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: none;
    background-color: #f2f2f2;
    border-radius: 4px;
    font-size: 1rem;
}

.contact-form textarea {
    grid-column: span 2;
    min-height: 120px;
    resize: vertical;
}

.contact-form button {
    grid-column: span 2;
    padding: 12px;
    background: none;
    border: 1px solid #a32e3f;
    color: #a32e3f;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background-color: #a32e3f;
    color: #fff;
}

/* Footer */
.footer {
    background-color: #a32e3f;
    color: #fff;
    padding: 30px 20px;
    text-align: center;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.footer-links a {
    color: #fff;
    margin-left: 20px;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
    .footer-inner {
        flex-direction: column;
        gap: 10px;
    }

    .contact-form textarea,
    .contact-form button {
        grid-column: span 1;
    }
}

/* Thank You Section */
.thank-you-message {
    padding: 100px 20px;
    text-align: left;
    background-color: #fff;
}

.thank-you-message h2 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.thank-you-message p {
    font-size: 1rem;
    margin-bottom: 30px;
    color: #444;
    max-width: 700px;
}

.btn-solid {
    display: inline-block;
    background-color: #a32e3f;
    color: #fff;
    padding: 14px 28px;
    font-weight: bold;
    text-decoration: none;
    border: none;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.btn-solid:hover {
    background-color: #891d30;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #ccc;
    padding: 40px 20px;
    z-index: 9999;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.05);
}

.cookie-banner h3 {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.cookie-banner p {
    font-size: 1rem;
    margin-bottom: 25px;
    color: #444;
    max-width: 1000px;
}

.cookie-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-cookie {
    background-color: #a32e3f;
    color: #fff;
    padding: 14px 36px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: background 0.3s ease;
}

.btn-cookie:hover {
    background-color: #891d30;
}

@media (max-width: 600px) {
    .cookie-actions {
        flex-direction: column;
        align-items: start;
    }

    .btn-cookie {
        width: 100%;
    }
}
