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

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

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

.header {
    padding: 20px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: bold;
    font-size: 20px;
}

.nav a {
    margin-left: 25px;
    text-decoration: none;
    color: #000;
    font-size: 15px;
}

.hero-img img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-content {
    padding: 40px 0;
}

.hero-content h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
}

.highlight {
    color: #f2c94c;
    font-weight: 700;
}

.hero-content p {
    margin-bottom: 20px;
    font-size: 16px;
}

.btn {
    display: inline-block;
    background: #f2c94c;
    color: #000;
    padding: 12px 20px;
    font-weight: bold;
    text-decoration: none;
    margin-top: 10px;
    border-radius: 3px;
    transition: background 0.3s;
}

.btn:hover {
    background: #e0b932;
}

/* Responsive */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav {
        margin-top: 10px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 14px;
    }
}

.about {
    background-color: #e4b937;
    padding: 60px 0;
    color: #fff;
}

.about-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1 1 500px;
}

.about-text h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #fff;
}

.about-img {
    flex: 1 1 400px;
}

.about-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
}

.about-stats {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
    gap: 20px;
    font-weight: bold;
    font-size: 14px;
}

.about-stats > div {
    flex: 1 1 200px;
}

/* Responsive */
@media (max-width: 768px) {
    .about-wrapper {
        flex-direction: column;
    }

    .about-text,
    .about-img {
        flex: 1 1 100%;
    }

    .about-stats {
        flex-direction: column;
        gap: 10px;
    }

    .about-stats > div {
        flex: unset;
    }
}

.services {
    padding: 80px 0;
    background-color: #fff;
    color: #000;
}

.services-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
}

.services-subtitle {
    max-width: 800px;
    font-size: 16px;
    margin-bottom: 50px;
}

.services-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.service-item {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
}

.service-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

.service-item p {
    font-size: 14px;
    color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .services-grid {
        flex-direction: column;
    }

    .service-item {
        align-items: flex-start;
    }

    .services-title {
        font-size: 24px;
    }

    .services-subtitle {
        font-size: 14px;
    }
}

.career {
    background-color: #e4b937;
    padding: 60px 0;
    color: #fff;
}

.career-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.career-img {
    flex: 1 1 500px;
}

.career-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
}

.career-text {
    flex: 1 1 500px;
}

.career-text h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.career-text p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .career-wrapper {
        flex-direction: column;
    }

    .career-img,
    .career-text {
        flex: 1 1 100%;
    }

    .career-text h2 {
        font-size: 22px;
    }

    .career-text p {
        font-size: 14px;
    }
}

/* FAQ */
.faq {
    padding: 80px 0;
    background: #fff;
}

.faq h2 {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 40px;
}

.faq-item {
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.faq-item h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.faq-item p {
    font-size: 14px;
    color: #444;
}

/* Contact */
.contact {
    padding: 80px 0;
    background: #fff;
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.contact-img {
    flex: 1 1 400px;
}

.contact-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
}

.contact-form {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
}

.contact-form h2 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    margin-bottom: 15px;
    padding: 12px;
    font-size: 14px;
    border: 1px solid #000;
    border-radius: 0;
}

.contact-form button {
    background-color: #f2c94c;
    color: #000;
    font-weight: bold;
    padding: 12px;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

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

/* Footer */
.footer {
    background-color: #000;
    color: #fff;
    padding: 30px 0;
    font-size: 14px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer a {
    color: #fff;
    text-decoration: none;
    margin-left: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer a {
        margin: 10px 0 0 0;
    }
}

/* Thank You Page */
.thank-you {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    text-align: center;
}

.thank-you h1 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
}

.thank-you h2 {
    font-size: 24px;
    margin-bottom: 40px;
}

.btn-return {
    background-color: #ecc44d;
    color: #fff;
    padding: 18px 28px;
    font-weight: bold;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.3s ease;
    display: inline-block;
}

.btn-return:hover {
    background-color: #d6ae3c;
}

html {
    scroll-behavior: smooth !important;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ecc44d;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
    z-index: 9999;
}

.cookie-banner h2 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

.cookie-banner p {
    font-size: 15px;
    max-width: 800px;
    margin: 0 auto 20px;
}

.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cookie-buttons button {
    background-color: #fff;
    color: #000;
    border: none;
    padding: 12px 24px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.cookie-buttons button:hover {
    background-color: #f4f4f4;
}

/* Responsive */
@media (max-width: 768px) {
    .cookie-banner p {
        font-size: 14px;
    }

    .cookie-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .nav {
        display: none;
    }
}
