/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.header {
    background-color: #fab30a;
    padding: 1rem 0;
}

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

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: #1c2839;
}

.cta-button, .btn-primary {
    background-color: #1c2839;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover, .btn-primary:hover {
    background-color: #2a3441;
}

.btn-primary {
    background-color: #fab30a;
    color: #1c2839;
}

.btn-primary:hover {
    background-color: #e5a209;
}

.btn-secondary {
    background-color: transparent;
    color: #fab30a;
    border: 2px solid #fab30a;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #fab30a;
    color: #1c2839;
}

/* Hero Section */
.hero {
    background-color: #fbfbfb;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 5rem 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-subtitle {
    color: #1c2839;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.title-orange {
    color: #fab30a;
}

.title-blue {
    color: #1c2839;
}

.hero-description {
    color: #666;
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-image {
    display: flex;
    justify-content: center;
}

.image-container {
    background-color: #fab30a;
    border-radius: 1.5rem;
    padding: 2rem;
    max-width: 100%;
}

.image-container img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
}

/* Customer Satisfaction */
.customer-satisfaction {
    padding: 4rem 0;
    background-color: white;
}

.satisfaction-content {
    text-align: center;
}

.satisfaction-content h3 {
    font-size: 2rem;
    font-weight: bold;
    color: #1c2839;
    margin-bottom: 2rem;
}

.satisfaction-image {
    width: 300px;
    height: auto;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.stars img {
    width: 24px;
    height: 24px;
}

.rating {
    font-size: 2rem;
    font-weight: bold;
    color: #1c2839;
    margin-bottom: 0.5rem;
}

/* About Section */
.about {
    padding: 5rem 0;
    background-color: #fbfbfb;
}

.about-header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1c2839;
    margin-bottom: 1rem;
}

.about-header h3 {
    font-size: 2rem;
    font-weight: bold;
    color: #fab30a;
    margin-bottom: 3rem;
}

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

.feature {
    text-align: center;
}

.feature h4 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1c2839;
    margin-bottom: 1rem;
}

.feature p {
    color: #666;
    line-height: 1.6;
}

.statistics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #fab30a;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #1c2839;
    font-weight: 600;
}

/* Job Content Section */
.job-content {
    padding: 5rem 0;
    background-color: white;
}

.job-header {
    text-align: center;
    margin-bottom: 4rem;
}

.job-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1c2839;
    margin-bottom: 1rem;
}

.job-header h3 {
    font-size: 2rem;
    font-weight: bold;
    color: #fab30a;
    margin-bottom: 2rem;
}

.job-header p {
    color: #666;
    font-size: 1.125rem;
    max-width: 800px;
    margin: 0 auto;
}

.job-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.job-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.job-item h4 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1c2839;
    margin-bottom: 0.5rem;
}

.job-item p {
    color: #666;
}

/* Products Section */
.products {
    padding: 5rem 0;
    background-color: #fbfbfb;
    text-align: center;
}

.products h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1c2839;
    margin-bottom: 1rem;
}

.products h3 {
    font-size: 2rem;
    font-weight: bold;
    color: #fab30a;
    margin-bottom: 2rem;
}

.products-subtitle {
    font-size: 1.5rem;
    color: #1c2839;
    margin-bottom: 2rem;
}

.products p {
    color: #666;
    font-size: 1.125rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

/* Benefits Section */
.benefits {
    padding: 5rem 0;
    background-color: white;
}

.benefits h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1c2839;
    text-align: center;
    margin-bottom: 4rem;
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.benefit-item h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1c2839;
    margin-bottom: 1rem;
}

.benefit-item p {
    color: #666;
    margin-bottom: 1rem;
}

.salary-highlight {
    font-size: 2rem;
    font-weight: bold;
    color: #fab30a;
}

.statistics-extended {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background-color: #fbfbfb;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1c2839;
    margin-bottom: 1rem;
}

.testimonials-header .subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fab30a;
}

.testimonials-header h3 {
    font-size: 2rem;
    font-weight: bold;
    color: #1c2839;
    margin-top: 2rem;
}

.testimonials-header h4 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fab30a;
}

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

.testimonial {
    background-color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.testimonial .stars {
    margin-bottom: 1rem;
}

.testimonial .stars img {
    width: 20px;
    height: 20px;
}

.testimonial p {
    color: #666;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author strong {
    color: #1c2839;
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #999;
    font-size: 0.9rem;
}

.featured-testimonial {
    display: flex;
    justify-content: center;
}

.featured-testimonial .testimonial {
    max-width: 600px;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background-color: #fab30a;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1c2839;
    margin-bottom: 1.5rem;
}

.cta-section p {
    color: #1c2839;
    font-size: 1.125rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.cta-section .cta-button {
    background-color: #1c2839;
    color: white;
}

/* Final Section */
.final-section {
    padding: 5rem 0;
    background-color: white;
    text-align: center;
}

.final-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1c2839;
    margin-bottom: 2rem;
}

.final-section p {
    color: #666;
    font-size: 1.125rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Footer */
.footer {
    background-color: #1c2839;
    color: white;
    padding: 4rem 0;
}

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

.footer-column h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

.contact-info p {
    color: #ccc;
    margin-bottom: 0.75rem;
}

.copyright {
    color: #ccc;
    margin-bottom: 1rem;
}

.legal-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.legal-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .job-details {
        grid-template-columns: 1fr;
    }

    .benefits-content {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .statistics {
        grid-template-columns: repeat(2, 1fr);
    }

    .statistics-extended {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    .logo {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .statistics {
        grid-template-columns: 1fr;
    }

    .statistics-extended {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}
