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

html {
    scroll-behavior: smooth;
}

body {
    font-family: system-ui, -apple-system, sans-serif;
    line-height: 1.6;
}

/* Header */
.site-header {
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #151A43;
    text-decoration: none;
}

.logo-img {
    width: 36px;
    height: 36px;
    display: block;
}

.logo-text {
    white-space: nowrap;
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1rem;
    }
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #BF6D3A;
}

.nav-cta {
    background: #BF6D3A;
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
}

.nav-cta:hover {
    background: #a85d30;
    color: white;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: #374151;
    transition: all 0.3s;
}

@media (max-width: 768px) {
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .main-nav.active {
        display: flex;
    }

    .nav-link {
        padding: 0.75rem 2rem;
        width: 100%;
    }

    .nav-cta {
        margin: 0.5rem 2rem;
        width: calc(100% - 4rem);
        text-align: center;
    }

    .mobile-menu-toggle {
        display: flex;
    }
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    min-height: 80vh;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-description {
    font-size: 1.125rem;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.hero-cta {
    display: inline-block;
}

.hero-image {
    flex-shrink: 0;
    width: 45%;
    max-width: 500px;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-image {
        width: 100%;
        max-width: 400px;
    }
}

/* How to start section */
.how-to-start {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.section-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
    text-align: center;
}

.section-heading {
    font-size: 1.25rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 2.5rem;
    text-align: center;
}

.how-to-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 3rem;
}

.how-to-image {
    flex-shrink: 0;
    width: 45%;
    max-width: 500px;
}

.how-to-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.how-to-text {
    flex: 1;
    min-width: 0;
}

.how-to-cta {
    text-align: center;
    margin-top: 2rem;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.75rem;
    align-items: flex-start;
}

.feature-list li:last-child {
    margin-bottom: 0;
}

.feature-list .check {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #22c55e;
    color: white;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: bold;
}

.feature-list strong {
    display: block;
    color: #1a1a1a;
    margin-bottom: 0.35rem;
}

.feature-list p {
    color: #4a4a4a;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .how-to-content {
        flex-direction: column;
    }

    .how-to-image {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Jobs section */
.jobs-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.job-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.job-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.job-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.job-card-subtitle {
    font-size: 0.95rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.job-features {
    list-style: none;
}

.job-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #4a4a4a;
    font-size: 0.95rem;
    line-height: 1.5;
}

.job-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: bold;
}

.testimonials-title {
    margin-bottom: 2rem;
}

.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
}

.testimonial-text {
    font-style: italic;
    color: #374151;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-author {
    font-size: 0.875rem;
    color: #6b7280;
}

@media (max-width: 768px) {
    .job-cards {
        grid-template-columns: 1fr;
    }

    .testimonial-cards {
        grid-template-columns: 1fr;
    }
}

/* Competencies section */
.competencies-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.competencies-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2.5rem;
}

.competencies-featured {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.competencies-featured-link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.competencies-featured-link:hover {
    border-color: #22c55e;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.15);
}

.featured-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.featured-title .arrow {
    color: #22c55e;
    font-size: 1.25rem;
}

.featured-desc {
    color: #4a4a4a;
    line-height: 1.6;
}

.competencies-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.competency-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.competency-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.competency-desc {
    font-size: 0.9rem;
    color: #6b7280;
}

@media (max-width: 768px) {
    .competencies-cards {
        grid-template-columns: 1fr;
    }
}

/* Testimonials section */
.testimonials-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.testimonials-title {
    margin-bottom: 2.5rem;
}

.testimonials-swiper {
    position: relative;
    overflow: hidden;
}

.testimonials-swiper .swiper {
    padding-bottom: 3rem;
}

.testimonials-swiper .swiper-slide {
    height: auto;
}

.testimonials-section .testimonial-card {
    background: #f1f5f6;
    border-radius: 12px;
    padding: 1.5rem;
    min-height: 280px;
    display: flex;
    flex-direction: column;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.testimonial-avatar {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonial-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.testimonial-role {
    font-size: 1rem;
    color: #6b7280;
}

.testimonials-section .testimonial-text {
    font-size: 1rem;
    color: #374151;
    line-height: 1.6;
    flex: 1;
}

.testimonials-section .testimonial-text strong {
    color: #151A43;
}

.testimonials-swiper .swiper-pagination {
    margin-top: 2rem;
}

.testimonials-swiper .swiper-pagination-bullet {
    background: #9ca3af;
    opacity: 0.5;
}

.testimonials-swiper .swiper-pagination-bullet-active {
    background: #151A43;
    opacity: 1;
}

.testimonials-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.cta-button {
    display: inline-block;
    background: #151A43;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    transition: background 0.2s;
}

.cta-button:hover {
    background: #1e2642;
}

/* FAQ section */
.faq-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.faq-section .section-title {
    margin-bottom: 2.5rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    padding: 1.25rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    transition: background 0.2s;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: "+";
    margin-left: auto;
    font-size: 1.25rem;
    color: #6b7280;
}

.faq-item[open] .faq-question::after {
    content: "−";
}

.faq-question:hover {
    background: #f9fafb;
}

.faq-answer {
    padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
    color: #4a4a4a;
    line-height: 1.6;
    margin: 0;
}

.faq-answer strong {
    color: #151A43;
}

/* Contact section */
.contact-section {
    margin-top: 4rem;
}

.contact-banner {
    position: relative;
    min-height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-banner-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1000;
}

.contact-banner-overlay {
    position: absolute;
    inset: 0;
    background: #BF6D3A;
}

.contact-banner-text {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 3rem 2rem;
}

.contact-banner-title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.contact-banner-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.95);
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background: #fff;
}

.contact-form-wrapper {
    max-width: 560px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.contact-intro {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 1.75rem;
}

.find-jobs-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-form .form-group {
    margin-bottom: 1.25rem;
}

.contact-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.contact-form label .optional {
    font-weight: 400;
    color: #9ca3af;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
}

.contact-form 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='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.25rem;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: #BF6D3A;
    box-shadow: 0 0 0 3px rgba(191, 109, 58, 0.2);
}

.contact-form textarea {
    resize: vertical;
    min-height: 80px;
}

@media (max-width: 540px) {
    .find-jobs-form .form-row {
        grid-template-columns: 1fr;
    }
}

.contact-submit {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: #BF6D3A;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.contact-submit:hover {
    background: #a85d30;
}

/* Contact page */
.contact-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem 4rem;
}

.contact-page-section {
    margin-bottom: 3rem;
}

.contact-page-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.contact-page-intro {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-form-wrapper--page {
    max-width: 520px;
    margin-bottom: 2.5rem;
}

.contact-page-info {
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.contact-info-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.contact-info-address,
.contact-info-phone {
    font-size: 0.95rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.contact-info-phone a {
    color: #BF6D3A;
}

/* About page */
.about-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem 4rem;
}

.about-hero {
    margin-bottom: 2.5rem;
}

.about-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.about-tagline {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.6;
}

.about-content {
    margin-bottom: 3rem;
}

.about-block {
    margin-bottom: 2rem;
}

.about-block h2 {
    font-size: 1.35rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.about-block p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.about-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.about-list li {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.7;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.about-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #BF6D3A;
    font-weight: bold;
}

.about-list strong {
    color: #1a1a1a;
}

.about-cta {
    text-align: center;
    padding: 2rem;
    background: #f9fafb;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.about-cta p {
    font-size: 1rem;
    color: #374151;
    margin-bottom: 1.25rem;
}

.about-cta .cta-button {
    display: inline-block;
}

/* Legal pages (Privacy Policy, Terms) */
.legal-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem 4rem;
}

.legal-content {
    margin-bottom: 3rem;
}

.legal-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.legal-updated {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.legal-block {
    margin-bottom: 2rem;
}

.legal-block h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.legal-block p,
.legal-block li {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.legal-block p {
    margin-bottom: 0.75rem;
}

.legal-block ul {
    margin: 0.5rem 0 1rem;
    padding-left: 1.5rem;
}

.legal-block li {
    margin-bottom: 0.35rem;
}

.legal-block a {
    color: #BF6D3A;
}

.legal-block a:hover {
    text-decoration: underline;
}

.site-footer--standalone {
    margin-top: 0;
    padding-top: 3rem;
    border-top: 1px solid #e5e7eb;
}

.site-footer {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid #e5e7eb;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column {
    min-width: 0;
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.footer-text {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-link:hover {
    color: #BF6D3A;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
    color: #9ca3af;
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
