/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Inter', -apple-system, 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.6;
    min-height: 100vh;
    min-height: -webkit-fill-available; /* iOS height fix */
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    padding-top: 60px; /* Reduced for mobile */
    color: #333;
}

/* Fix for iOS height */
html {
    height: -webkit-fill-available;
}

/* Container styles */
.container, .hero-container, .footer-content {
    max-width: 1030px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header styles */
header {
    background-color: #ffffff;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 60px; /* Fixed height for mobile */
    border-bottom: 1px solid #e8f4f8;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    background-color: white;
    position: relative;
}

.logo {
    height: 100%;
    display: flex;
    align-items: center;
}

.logo-placeholder {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c7a7b;
    text-decoration: none;
}

.logo-image {
    height: 40px;
    width: auto;
    display: block;
    object-fit: contain;
}

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

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2c7a7b;
}

.linkedin-icon {
    font-size: 1.2rem;
    color: #0077b5;
}

.linkedin-icon:hover {
    color: #005885;
}

/* Hero section */
.hero {
    width: 100%;
    background: linear-gradient(135deg, #e6fffa 0%, #b2f5ea 50%, #81e6d9 100%);
    overflow: hidden;
    padding: 80px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}

.hero-container {
    text-align: center;
    color: #1a202c;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #2c7a7b 0%, #38b2ac 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 122, 123, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 122, 123, 0.4);
    color: white;
}

/* Section titles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Industries Section */
.industries-section {
    background: #f7fafc;
    padding: 80px 0;
}

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

.industry-item {
    background: white;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.industry-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.industry-item i {
    font-size: 2.5rem;
    color: #2c7a7b;
    margin-bottom: 1rem;
    display: block;
}

.industry-item span {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a202c;
}

.industries-note {
    text-align: center;
    font-size: 1.1rem;
    color: #4a5568;
    font-style: italic;
}

/* Why Choose Section */
.why-choose-section {
    background: white;
    padding: 80px 0;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.why-item {
    text-align: center;
    padding: 2rem;
    background: #f7fafc;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.why-item:hover {
    transform: translateY(-5px);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2c7a7b 0%, #38b2ac 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.why-item h3 {
    font-size: 1.3rem;
    color: #1a202c;
    margin-bottom: 1rem;
    font-weight: 600;
}

.why-item p {
    color: #4a5568;
    line-height: 1.6;
}

/* Services Section */
.services-section {
    background: #f7fafc;
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 3rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2c7a7b 0%, #38b2ac 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: white;
    font-size: 2rem;
}

.service-card h3 {
    font-size: 1.8rem;
    color: #1a202c;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0;
    color: #4a5568;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c7a7b;
    font-weight: bold;
}

/* Comparison Section */
.comparison-section {
    background: white;
    padding: 80px 0;
}

.comparison-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin: 3rem 0;
}

.table-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: linear-gradient(135deg, #2c7a7b 0%, #38b2ac 100%);
    color: white;
    font-weight: 600;
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid #e2e8f0;
}

.table-row:last-child {
    border-bottom: none;
}

.table-row:nth-child(even) {
    background: #f7fafc;
}

.table-cell {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    font-size: 1rem;
}

.table-header .table-cell {
    font-size: 1.1rem;
    font-weight: 700;
}

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

/* Testimonials Section */
.testimonials-section {
    background: #f7fafc;
    padding: 80px 0;
}

.testimonial {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial blockquote {
    font-size: 1.5rem;
    color: #1a202c;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial cite {
    font-size: 1.1rem;
    color: #4a5568;
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    background: white;
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.faq-item {
    background: #f7fafc;
    border-radius: 12px;
    border-left: 4px solid #2c7a7b;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f7fafc;
    transition: background-color 0.3s ease;
}

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

.faq-question h3 {
    font-size: 1.1rem;
    color: #1a202c;
    font-weight: 600;
    margin: 0;
    flex: 1;
    padding-right: 1rem;
}

.faq-question i {
    color: #2c7a7b;
    font-size: 1rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
}

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

.faq-answer p {
    color: #4a5568;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.faq-answer ul {
    margin-left: 1.5rem;
    color: #4a5568;
}

.faq-answer li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.faq-item.active .faq-question {
    background: #e6fffa;
}

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(135deg, #2c7a7b 0%, #38b2ac 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.final-cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.final-cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.final-cta-section .cta-button {
    background: white;
    color: #2c7a7b;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.final-cta-section .cta-button:hover {
    background: #f7fafc;
    color: #2c7a7b;
}

.final-cta-section .cta-button i {
    margin-right: 0.5rem;
}

/* Features section */
.features {
    padding: 100px 0;
    background-color: #f7fafc;
}

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

.feature-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2c7a7b 0%, #38b2ac 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.feature-item h3 {
    font-size: 1.5rem;
    color: #1a202c;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-item p {
    color: #4a5568;
    line-height: 1.6;
}

/* Page header */
.page-header {
    background: linear-gradient(135deg, #e6fffa 0%, #b2f5ea 100%);
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
}

/* Services section */
.services {
    padding: 100px 0;
    background-color: #f7fafc;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.service-item {
    background: white;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2c7a7b 0%, #38b2ac 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: white;
    font-size: 2rem;
}

.service-item h2 {
    font-size: 2rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.service-content p {
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0;
    color: #4a5568;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c7a7b;
    font-weight: bold;
}

/* About content */
.about-content {
    padding: 100px 0;
    background-color: white;
}

.about-text {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.about-text p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.feature-card {
    text-align: center;
    padding: 2rem;
    background: #f7fafc;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-3px);
}

.feature-card .feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2c7a7b 0%, #38b2ac 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    color: #1a202c;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-card p {
    color: #4a5568;
    font-size: 0.95rem;
}

/* Contact content */
.contact-content {
    padding: 100px 0;
    background-color: #f7fafc;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-form-section, .contact-info-section {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form-section h2, .contact-info-section h2 {
    font-size: 2rem;
    color: #1a202c;
    margin-bottom: 2rem;
    font-weight: 600;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.form-group input, .form-group textarea {
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: #2c7a7b;
}

.submit-button {
    background: linear-gradient(135deg, #2c7a7b 0%, #38b2ac 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 122, 123, 0.3);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 122, 123, 0.4);
}

.success-message {
    background: #c6f6d5;
    color: #22543d;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.success-message i {
    font-size: 1.2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2c7a7b 0%, #38b2ac 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.contact-details h3 {
    font-size: 1.1rem;
    color: #1a202c;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.contact-details p, .contact-details a {
    color: #4a5568;
    text-decoration: none;
}

.linkedin-link {
    color: #0077b5 !important;
    font-weight: 500;
}

.linkedin-link:hover {
    text-decoration: underline;
}

.contact-cta {
    background: #e6fffa;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.contact-cta h3 {
    font-size: 1.25rem;
    color: #1a202c;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-cta p {
    color: #4a5568;
}

/* CTA section */
.cta-section {
    background: linear-gradient(135deg, #2c7a7b 0%, #38b2ac 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-section .cta-button {
    background: white;
    color: #2c7a7b;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.cta-section .cta-button:hover {
    background: #f7fafc;
    color: #2c7a7b;
}

/* Footer */
footer {
    background-color: #1a202c;
    color: white;
    padding: 60px 0 40px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.company-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.company-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #81e6d9;
}

.footer-linkedin {
    color: #81e6d9;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.footer-linkedin:hover {
    color: #4fd1c7;
}

.footer-nav {
    display: flex;
    justify-content: center;
}

.footer-nav .nav-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav .nav-links a {
    color: #a0aec0;
    transition: color 0.3s;
}

.footer-nav .nav-links a:hover {
    color: #81e6d9;
}

.contact {
    color: #a0aec0;
    font-size: 0.95rem;
}

.copyright {
    color: #718096;
    font-size: 0.9rem;
    border-top: 1px solid #2d3748;
    padding-top: 2rem;
}

/* Hamburger menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger-menu span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Responsive design */
@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }

    header {
        height: 60px;
    }

    .navbar {
        padding: 0 1rem;
    }

    .logo-placeholder {
        font-size: 1.25rem;
    }

    .hamburger-menu {
        display: flex;
    }

    .nav-right {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-right.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 1rem 0;
        border-bottom: 1px solid #e2e8f0;
        font-size: 1.1rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

    .section-subtitle {
        font-size: 1.1rem;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .page-header p {
        font-size: 1.1rem;
    }

    .feature-grid, .service-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form-section, .contact-info-section {
        padding: 2rem;
    }

    .footer-content {
        gap: 1.5rem;
    }

    .footer-nav .nav-links {
        flex-direction: column;
        gap: 1rem;
    }

    .features, .services, .about-content, .contact-content {
        padding: 60px 0;
    }

    .hero {
        padding: 60px 0;
        min-height: 50vh;
    }

    .cta-section {
        padding: 60px 0;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .cta-section p {
        font-size: 1.1rem;
    }

    .contact-info-centered {
        padding: 2rem 1rem;
    }

    /* New sections responsive styles */
    .industries-section, .why-choose-section, .services-section, 
    .comparison-section, .testimonials-section, .faq-section, 
    .final-cta-section {
        padding: 60px 0;
    }

    .industries-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }

    .industry-item {
        padding: 1.5rem 1rem;
    }

    .industry-item i {
        font-size: 2rem;
    }

    .industry-item span {
        font-size: 1rem;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .why-item {
        padding: 1.5rem;
    }

    .why-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .comparison-table {
        margin: 2rem 0;
    }

    .table-header, .table-row {
        grid-template-columns: 1fr;
    }

    .table-cell {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .table-header .table-cell {
        font-size: 1rem;
    }

    .testimonial blockquote {
        font-size: 1.3rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .faq-item {
        margin-bottom: 1rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .final-cta-section h2 {
        font-size: 2rem;
    }

    .final-cta-section p {
        font-size: 1.1rem;
    }
}

@media (max-width: 1080px) {
    .navbar, .hero-container, .container, .footer-content {
        padding: 0 1.5rem;
    }

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

    .service-item {
        padding: 2rem;
    }

    .industries-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }

    .why-choose-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }

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

    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

.contact-info-centered {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    padding: 3rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-info-centered h2 {
    font-size: 2rem;
    color: #1a202c;
    margin-bottom: 2rem;
    font-weight: 600;
}

/* New Homepage Styles */
.hero.new-hero {
    background: linear-gradient(135deg, #e3f0ff 0%, #d1f7f2 100%);
    min-height: 60vh;
    padding: 100px 0 60px;
}

.benefits-section {
    background: #f7fafc;
    padding: 80px 0 60px;
}
.benefits-section .section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 3rem;
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}
.benefit-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(30, 64, 175, 0.06);
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: box-shadow 0.2s;
}
.benefit-item:hover {
    box-shadow: 0 6px 24px rgba(30, 64, 175, 0.10);
}
.benefit-icon {
    background: linear-gradient(135deg, #38b2ac 0%, #4299e1 100%);
    color: #fff;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.2rem;
}
.benefit-item h3 {
    font-size: 1.2rem;
    color: #234e52;
    margin-bottom: 0.7rem;
    font-weight: 600;
}
.benefit-item p {
    color: #4a5568;
    font-size: 1rem;
}

.how-section {
    background: #fff;
    padding: 80px 0 60px;
}
.how-section .section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 3rem;
}
.how-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}
.how-step {
    background: #f7fafc;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    flex: 1 1 220px;
    min-width: 220px;
    max-width: 300px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(30, 64, 175, 0.04);
}
.how-step-number {
    display: inline-block;
    background: linear-gradient(135deg, #4299e1 0%, #38b2ac 100%);
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    line-height: 36px;
    margin-bottom: 1rem;
}
.how-step h3 {
    font-size: 1.1rem;
    color: #234e52;
    margin-bottom: 0.5rem;
    font-weight: 600;
}
.how-step p {
    color: #4a5568;
    font-size: 1rem;
}

.why-section {
    background: #f7fafc;
    padding: 60px 0 40px;
}
.why-section .section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 2rem;
}
.why-list {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}
.why-list li {
    background: #fff;
    border-radius: 8px;
    padding: 1rem 2rem;
    color: #234e52;
    font-weight: 500;
    font-size: 1.05rem;
    box-shadow: 0 2px 8px rgba(30, 64, 175, 0.04);
}

.cta-section.new-cta {
    background: linear-gradient(135deg, #4299e1 0%, #38b2ac 100%);
    color: #fff;
    padding: 80px 0 60px;
    text-align: center;
}
.cta-section.new-cta h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.cta-section.new-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}
.cta-section.new-cta .cta-button {
    background: #fff;
    color: #4299e1;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(66, 153, 225, 0.10);
}
.cta-section.new-cta .cta-button:hover {
    background: #f7fafc;
    color: #234e52;
}

@media (max-width: 900px) {
    .benefits-grid, .how-steps {
        grid-template-columns: 1fr;
        flex-direction: column;
        gap: 2rem;
    }
    .why-list {
        flex-direction: column;
        gap: 1rem;
    }
} 

.hero-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 2rem;
    margin-top: 1.2rem;
}
.hero-benefit {
    background: #e3f0ff;
    color: #234e52;
    font-size: 0.98rem;
    padding: 0.45em 1.1em;
    border-radius: 999px;
    font-weight: 500;
    box-shadow: 0 1px 4px rgba(66,153,225,0.07);
    letter-spacing: 0.01em;
    white-space: nowrap;
} 

/* --- Features Row --- */
.features-row-section {
  background: #f7fafc;
  padding: 60px 0 40px 0;
}
.features-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.feature-box {
  flex: 1 1 200px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  padding: 24px 18px;
  text-align: center;
  min-width: 220px;
}
.feature-box h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #2c7a7b;
}
.feature-box p {
  color: #444;
  font-size: 1rem;
}
@media (max-width: 900px) {
  .features-row {
    flex-direction: column;
    gap: 16px;
  }
}

/* --- How It Works --- */
.how-it-works {
  padding: 60px 0 40px 0;
  background: #fff;
}
.how-flex {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.how-steps-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 200px;
}
.step {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 500;
  background: #f7fafc;
  transition: background 0.2s;
  border: 2px solid transparent;
}
.step.active, .step:hover {
  background: #e6fffa;
  border-color: #2c7a7b;
}
.step-number {
  background: #222;
  color: #fff;
  border-radius: 6px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  font-weight: bold;
  font-size: 18px;
}
.how-step-details {
  flex: 2;
  background: linear-gradient(120deg, #a8edea 0%, #fed6e3 100%);
  border-radius: 16px;
  padding: 32px 28px;
  min-height: 260px;
  position: relative;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.step-detail {
  display: none;
  animation: fadeIn 0.3s;
}
.step-detail.active {
  display: block;
}
.get-started-btn {
  margin-top: 20px;
  background: #2c7a7b;
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(44,122,123,0.08);
  transition: background 0.2s;
}
.get-started-btn:hover {
  background: #205e5e;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@media (max-width: 900px) {
  .how-flex {
    flex-direction: column;
    gap: 24px;
  }
  .how-step-details {
    min-height: 180px;
    padding: 20px 10px;
  }
} 

/* --- How Timeline Section --- */
.how-timeline-section {
  padding: 60px 0 40px 0;
  background: #fff;
}
.timeline {
  position: relative;
  margin: 40px 0 0 0;
  padding-left: 40px;
  border-left: 4px solid #e6fffa;
}
.timeline-step {
  position: relative;
  margin-bottom: 48px;
  display: flex;
  align-items: flex-start;
}
.timeline-step:last-child {
  margin-bottom: 0;
}
.timeline-dot {
  position: absolute;
  left: -24px;
  top: 0;
  width: 36px;
  height: 36px;
  background: #2c7a7b;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(44,122,123,0.10);
  z-index: 1;
}
.timeline-content {
  background: #f7fafc;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  padding: 28px 24px 22px 24px;
  margin-left: 24px;
  min-width: 220px;
  flex: 1;
}
.timeline-content h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: #205e5e;
  font-size: 1.15rem;
  font-weight: 600;
}
.timeline-content p {
  color: #444;
  margin-bottom: 18px;
}
.get-started-btn {
  background: #2c7a7b;
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s;
  display: inline-block;
}
.get-started-btn:hover {
  background: #205e5e;
}
@media (max-width: 900px) {
  .timeline {
    padding-left: 20px;
    border-left-width: 3px;
  }
  .timeline-dot {
    width: 28px;
    height: 28px;
    font-size: 1rem;
    left: -16px;
  }
  .timeline-content {
    padding: 18px 10px 14px 10px;
    margin-left: 14px;
  }
} 

/* Plans Page Styles */
.page-intro {
    background: linear-gradient(135deg, #e6fffa 0%, #b2f5ea 50%, #81e6d9 100%);
    padding: 100px 0 80px;
    text-align: center;
}

.intro-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.intro-subtitle {
    font-size: 1.3rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Plans Section */
.plans-section {
    background: #f7fafc;
    padding: 80px 0;
}

.plans-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.5fr;
    gap: 2rem;
    max-width: 1600px;
    margin: 0 auto;
    align-items: stretch;
}

.plan-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2c7a7b, #38b2ac);
}

.plan-card.core-hire::before {
    background: linear-gradient(90deg, #3182ce, #4299e1);
}

.plan-card.smart-hire::before {
    background: linear-gradient(90deg, #38a169, #48bb78);
}

.plan-card.executive-hire::before {
    background: linear-gradient(90deg, #d69e2e, #ecc94b);
}

.plan-card.offshore-staffing::before {
    background: linear-gradient(90deg, #2d3748, #4a5568);
}

.plan-card.offshore-staffing {
    background: #e2e8f0;
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2c7a7b 0%, #38b2ac 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.plan-card.core-hire .plan-icon {
    background: linear-gradient(135deg, #3182ce 0%, #4299e1 100%);
}

.plan-card.smart-hire .plan-icon {
    background: linear-gradient(135deg, #38a169 0%, #48bb78 100%);
}

.plan-card.executive-hire .plan-icon {
    background: linear-gradient(135deg, #d69e2e 0%, #ecc94b 100%);
}

.plan-card.offshore-staffing .plan-icon {
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
}

.plan-header h2 {
    font-size: 1.8rem;
    color: #1a202c;
    margin-bottom: 0.5rem;
    font-weight: 700;
    min-height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.plan-description {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.5;
    min-height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.plan-features {
    margin-bottom: 2rem;
    flex-grow: 1;
}

.plan-features ul {
    list-style: none;
    padding: 0;
}

.plan-features li {
    padding: 0.75rem 0;
    color: #4a5568;
    display: flex;
    align-items: center;
    font-size: 1rem;
    line-height: 1.5;
}

.plan-features li i {
    color: #2c7a7b;
    margin-right: 0.75rem;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.plan-use-case {
    background: #f7fafc;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.plan-use-case h4 {
    color: #1a202c;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    min-height: 1.5rem;
    display: flex;
    align-items: center;
}

.plan-use-case p {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    min-height: 3rem;
    display: flex;
    align-items: center;
}

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

.role-list li {
    color: #4a5568;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    padding-left: 0;
    display: block;
    white-space: nowrap;
}

.role-list li::before {
    content: "•";
    color: #2c7a7b;
    font-weight: bold;
    margin-right: 0.5rem;
}

.plan-cta {
    text-align: center;
    margin-top: auto;
}

.plan-button {
    display: inline-block;
    background: linear-gradient(135deg, #2c7a7b 0%, #38b2ac 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 122, 123, 0.3);
}

.plan-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 122, 123, 0.4);
    color: white;
}

.plan-button i {
    margin-right: 0.5rem;
}

/* Plans CTA Section */
.plans-cta-section {
    background: linear-gradient(135deg, #2c7a7b 0%, #38b2ac 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.plans-cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.plans-cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.plans-cta-section .cta-button {
    background: white;
    color: #2c7a7b;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.plans-cta-section .cta-button:hover {
    background: #f7fafc;
    color: #2c7a7b;
}

/* Responsive styles for Plans page */
@media (max-width: 1200px) {
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .plan-card.offshore-staffing {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .intro-content h1 {
        font-size: 2.5rem;
    }

    .intro-subtitle {
        font-size: 1.1rem;
    }

    .plans-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .plan-card {
        padding: 2rem 1.5rem;
    }

    .plan-header h2 {
        font-size: 1.6rem;
    }

    .plans-cta-section h2 {
        font-size: 2rem;
    }

    .plans-cta-section p {
        font-size: 1.1rem;
    }
}

/* Resources Page Styles */
.newsletter-section {
    background: linear-gradient(135deg, #e6fffa 0%, #b2f5ea 50%, #81e6d9 100%);
    padding: 60px 0;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 1rem;
    font-weight: 700;
}

.newsletter-content p {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-button-container {
    display: flex;
    justify-content: center;
}

.newsletter-input {
    flex: 1;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter-input:focus {
    border-color: #2c7a7b;
}

.newsletter-button {
    background: linear-gradient(135deg, #2c7a7b 0%, #38b2ac 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 122, 123, 0.3);
}

.newsletter-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 122, 123, 0.4);
}

/* Articles Section */
.articles-section {
    background: white;
    padding: 80px 0;
}

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

.article-card {
    background: #f7fafc;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.article-image {
    background: linear-gradient(135deg, #2c7a7b 0%, #38b2ac 100%);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.article-content {
    padding: 2rem;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.article-category {
    color: #2c7a7b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-date {
    color: #718096;
}

.article-content h3 {
    font-size: 1.3rem;
    color: #1a202c;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.4;
}

.article-content p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.read-more {
    color: #2c7a7b;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #1a202c;
}

.articles-cta {
    text-align: center;
}

/* Guides Section */
.guides-section {
    background: #f7fafc;
    padding: 80px 0;
}

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

.guide-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.guide-card:hover {
    transform: translateY(-5px);
}

.guide-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2c7a7b 0%, #38b2ac 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.guide-card h3 {
    font-size: 1.4rem;
    color: #1a202c;
    margin-bottom: 1rem;
    font-weight: 600;
}

.guide-card p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.guide-link {
    color: #2c7a7b;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.guide-link:hover {
    color: #1a202c;
}

/* Resources FAQ Section */
.resources-faq-section {
    background: white;
    padding: 80px 0;
}

.resources-faq-section .faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

/* Resources CTA Section */
.resources-cta-section {
    background: linear-gradient(135deg, #2c7a7b 0%, #38b2ac 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.resources-cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.resources-cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.resources-cta-section .cta-button {
    background: white;
    color: #2c7a7b;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.resources-cta-section .cta-button:hover {
    background: #f7fafc;
    color: #2c7a7b;
}

/* Responsive styles for Resources page */
@media (max-width: 768px) {
    .newsletter-content h2 {
        font-size: 2rem;
    }

    .newsletter-content p {
        font-size: 1.1rem;
    }

    .newsletter-form {
        flex-direction: column;
        max-width: 100%;
    }

    .articles-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .guides-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .resources-faq-section .faq-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .resources-cta-section h2 {
        font-size: 2rem;
    }

    .resources-cta-section p {
        font-size: 1.1rem;
    }
}

@media (max-width: 1200px) {
    .articles-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .guides-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
} 

/* Career Page Styles - Different Design for Candidates */
/* Override header background for career page */
.career-page header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 2px 20px rgba(102, 126, 234, 0.3);
}

.career-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.career-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ffffff, #f0f8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.career-hero .hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: #e6f3ff;
}

.career-hero .hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #d1e7ff;
}

.career-hero .hero-note {
    font-style: italic;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #ffd700;
}

.career-hero .hero-cta {
    font-weight: 600;
    margin-bottom: 3rem;
    color: #ffffff;
}

.career-cta {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.career-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
    color: white;
}

/* Who We're Looking For Section */
.who-we-are-section {
    padding: 5rem 0;
    background: #f8f9ff;
}

.who-we-are-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #34495e;
    margin-bottom: 0.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    text-align: center;
    font-size: 1rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.qualities-horizontal {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.quality-row {
    display: flex;
    align-items: flex-start;
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.1);
    border: 1px solid #e8f2ff;
    transition: all 0.3s ease;
    gap: 2rem;
}

.quality-row:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.quality-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 200px;
    flex-shrink: 0;
}

.quality-header i {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.quality-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.quality-content {
    flex: 1;
}

.quality-content p {
    color: #34495e;
    margin-bottom: 0.8rem;
    line-height: 1.6;
    font-size: 1rem;
}

.quality-content p:last-child {
    margin-bottom: 0;
}

/* Requirements Section */
.requirements-section {
    padding: 5rem 0;
    background: white;
}

.requirements-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.requirements-table {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.1);
}

.requirements-table table {
    width: 100%;
    border-collapse: collapse;
}

.requirements-table th {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.5rem;
    text-align: left;
    font-weight: 600;
}

.requirements-table td {
    padding: 1.5rem;
    border-bottom: 1px solid #e8f2ff;
    color: #34495e;
}

.requirements-table tr:last-child td {
    border-bottom: none;
}

.requirements-table tr:hover {
    background: #f8f9ff;
}

/* Hiring Process Section */
.hiring-process-section {
    padding: 5rem 0;
    background: #f8f9ff;
}

.hiring-process-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.process-steps {
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 2rem;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.step-content p {
    color: #34495e;
    line-height: 1.6;
}

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

.benefits-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.benefit-item i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.benefit-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
}

/* Career Final CTA */
.career-final-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.career-final-cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.career-final-cta p {
    color: #e6f3ff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.career-final-cta .cta-subtitle {
    color: #ffd700;
    font-weight: 500;
    margin-bottom: 2rem;
}



/* Responsive Design for Career Page */
@media (max-width: 768px) {
    .career-hero h1 {
        font-size: 2.5rem;
    }
    
    .career-hero .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .qualities-horizontal {
        gap: 1.5rem;
    }
    
    .quality-row {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .quality-header {
        min-width: auto;
        justify-content: center;
    }
    
    .quality-content {
        text-align: center;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .requirements-table {
        margin: 0 1rem;
    }
    
    .requirements-table th,
    .requirements-table td {
        padding: 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .career-hero h1 {
        font-size: 2rem;
    }
    
    .career-hero .hero-description {
        font-size: 1rem;
    }
    
    .quality-row,
    .process-step,
    .benefit-item {
        padding: 1.5rem;
    }
} 

/* Quiz Page Styles */
.quiz-page header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 2px 20px rgba(102, 126, 234, 0.3);
}

.quiz-container {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
}

.quiz-screen {
    display: none;
    width: 100%;
    max-width: 800px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.2);
    overflow: hidden;
}

.quiz-screen.active {
    display: block;
}

.quiz-content {
    padding: 3rem;
    text-align: center;
}

.quiz-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.quiz-intro {
    font-size: 1.2rem;
    color: #34495e;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.quiz-note {
    font-size: 1rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
    font-style: italic;
}

.recaptcha-container {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
}

.quiz-button {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.quiz-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
    color: white;
}

.quiz-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Quiz Header */
.quiz-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.progress-bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    margin-right: 2rem;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #ffd700;
    border-radius: 4px;
    transition: width 0.3s ease;
    width: 0%;
}

.question-counter {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Quiz Form */
.quiz-form {
    padding: 2rem;
}

.question-block {
    display: none;
    margin-bottom: 2rem;
}

.question-block[data-question="1"] {
    display: block;
}

.question-block h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.option {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    border: 2px solid #e8f2ff;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.option:hover {
    border-color: #667eea;
    background: #f8f9ff;
    transform: translateX(5px);
}

.option input[type="radio"],
.option input[type="checkbox"] {
    margin-right: 1rem;
    transform: scale(1.2);
    accent-color: #667eea;
}

.option-text {
    font-size: 1rem;
    color: #34495e;
    font-weight: 500;
    flex: 1;
}

/* Quiz Navigation */
.quiz-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e8f2ff;
}

.nav-button,
.submit-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.nav-button:hover:not(:disabled),
.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.nav-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Disqualification Screen */
.disqualification-icon {
    font-size: 4rem;
    color: #e74c3c;
    margin-bottom: 2rem;
}

.disqualification-message {
    font-size: 1.2rem;
    color: #34495e;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.disqualification-suggestion {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.suggestion-list {
    text-align: left;
    max-width: 500px;
    margin: 0 auto 2rem;
    padding-left: 1.5rem;
}

.suggestion-list li {
    margin-bottom: 0.5rem;
    color: #34495e;
    line-height: 1.5;
}

/* Success Screen */
.success-icon {
    font-size: 4rem;
    color: #27ae60;
    margin-bottom: 2rem;
}

.success-message {
    font-size: 1.2rem;
    color: #34495e;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.success-note {
    font-size: 1rem;
    color: #7f8c8d;
    font-style: italic;
    margin-bottom: 2rem;
}

/* Responsive Design for Quiz */
@media (max-width: 768px) {
    .quiz-container {
        padding: 1rem;
    }
    
    .quiz-content {
        padding: 2rem;
    }
    
    .quiz-content h1 {
        font-size: 2rem;
    }
    
    .quiz-header {
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }
    
    .progress-bar {
        margin-right: 0;
        width: 100%;
    }
    
    .quiz-form {
        padding: 1.5rem;
    }
    
    .question-block h3 {
        font-size: 1.2rem;
    }
    
    .option {
        padding: 0.8rem 1rem;
    }
    
    .quiz-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-button,
    .submit-button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .quiz-content {
        padding: 1.5rem;
    }
    
    .quiz-content h1 {
        font-size: 1.8rem;
    }
    
    .quiz-intro {
        font-size: 1.1rem;
    }
    
    .option-text {
        font-size: 0.9rem;
    }
    
    .disqualification-icon,
    .success-icon {
        font-size: 3rem;
    }
} 

/* Success Screen Styles */
.success-content {
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
}

.success-content h1 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.success-intro {
    text-align: center;
    font-size: 1.3rem;
    color: #34495e;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.success-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 2.5rem;
    text-align: center;
}

.benefits-section,
.requirements-section,
.values-section,
.video-section,
.apply-section,
.additional-info {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: #f8f9ff;
    border-radius: 15px;
    border-left: 4px solid #667eea;
}

.benefits-section h2,
.requirements-section h2,
.values-section h2,
.video-section h2,
.apply-section h2 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.benefits-section h3,
.requirements-section h3,
.values-section h3,
.video-section h3 {
    color: #34495e;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    font-weight: 600;
}

.benefits-list,
.requirements-list,
.values-list,
.video-requirements {
    list-style: none;
    padding: 0;
}

.benefits-list li,
.requirements-list li,
.values-list li,
.video-requirements li {
    padding: 0.5rem 0;
    color: #34495e;
    line-height: 1.6;
    position: relative;
    padding-left: 1.5rem;
}

.benefits-list li:before,
.requirements-list li:before,
.values-list li:before,
.video-requirements li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.benefits-note {
    font-style: italic;
    color: #7f8c8d;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.apply-steps {
    padding-left: 1.5rem;
}

.apply-steps li {
    margin-bottom: 0.8rem;
    color: #34495e;
    line-height: 1.6;
}

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

.apply-button {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    font-size: 1.2rem;
    padding: 1.2rem 3rem;
}

.apply-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
}

.additional-info {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.additional-info h3 {
    color: white;
    margin-top: 1.5rem;
}

.additional-info p,
.additional-info li {
    color: #e6f3ff;
}

.additional-info a {
    color: #ffd700;
    text-decoration: underline;
}

.additional-info a:hover {
    color: #ffffff;
}

.final-message {
    font-size: 1.3rem;
    text-align: center;
    margin: 2rem 0 1rem;
    color: #ffd700;
}

.tagline {
    text-align: center;
    font-size: 1.1rem;
    color: #e6f3ff;
    font-style: italic;
}

/* Responsive Design for Success Screen */
@media (max-width: 768px) {
    .success-content {
        padding: 1rem;
    }
    
    .benefits-section,
    .requirements-section,
    .values-section,
    .video-section,
    .apply-section,
    .additional-info {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .success-content h1 {
        font-size: 1.8rem;
    }
    
    .success-intro {
        font-size: 1.1rem;
    }
    
    .success-description {
        font-size: 1rem;
    }
    
    .benefits-section h2,
    .requirements-section h2,
    .values-section h2,
    .video-section h2,
    .apply-section h2 {
        font-size: 1.3rem;
    }
    
    .apply-button {
        font-size: 1.1rem;
        padding: 1rem 2rem;
    }
}

@media (max-width: 480px) {
    .success-content {
        padding: 0.5rem;
    }
    
    .benefits-section,
    .requirements-section,
    .values-section,
    .video-section,
    .apply-section,
    .additional-info {
        padding: 1rem;
    }
    
    .success-content h1 {
        font-size: 1.6rem;
    }
    
    .final-message {
        font-size: 1.1rem;
    }
} 

/* Apply Page Styles */
.apply-page header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 2px 20px rgba(102, 126, 234, 0.3);
}

.apply-container {
    min-height: calc(100vh - 200px);
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
}

.apply-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.2);
    overflow: hidden;
}

.congratulations-section {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    text-align: center;
    padding: 3rem 2rem;
}

.congratulations-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.congrats-message {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: #ffd700;
}

.application-form {
    padding: 3rem;
}

.application-form h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center;
}

.form-intro {
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.form-section {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: #f8f9ff;
    border-radius: 15px;
    border-left: 4px solid #667eea;
}

.form-section h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #e8f2ff;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group small {
    display: block;
    margin-top: 0.5rem;
    color: #7f8c8d;
    font-size: 0.9rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

.submit-button {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    border: none;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.4);
}

.submit-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.6);
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Responsive Design for Apply Page */
@media (max-width: 768px) {
    .apply-container {
        padding: 1rem;
    }
    
    .application-form {
        padding: 2rem;
    }
    
    .congratulations-section {
        padding: 2rem 1.5rem;
    }
    
    .congratulations-section h1 {
        font-size: 2rem;
    }
    
    .application-form h2 {
        font-size: 1.8rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .submit-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .application-form {
        padding: 1.5rem;
    }
    
    .congratulations-section h1 {
        font-size: 1.8rem;
    }
    
    .congrats-message {
        font-size: 1.1rem;
    }
    
    .form-section {
        padding: 1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.7rem 0.8rem;
        font-size: 0.9rem;
    }
} 

/* Passed Page Styles */
.passed-page header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 2px 20px rgba(102, 126, 234, 0.3);
}

.passed-container {
    min-height: calc(100vh - 200px);
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
}

.passed-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.2);
    overflow: hidden;
}

.instructions-content {
    padding: 3rem;
    text-align: left;
}

.instructions-content h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 2.2rem;
}

.intro-text {
    text-align: center;
    font-size: 1.3rem;
    color: #34495e;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 2.5rem;
    text-align: center;
}

.benefits-section,
.requirements-section,
.values-section,
.video-section,
.apply-section,
.additional-info {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: #f8f9ff;
    border-radius: 15px;
    border-left: 4px solid #667eea;
}

.benefits-section h3,
.requirements-section h3,
.values-section h3,
.video-section h3,
.apply-section h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.benefits-section h4,
.requirements-section h4,
.values-section h4,
.video-section h4 {
    color: #34495e;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    font-weight: 600;
}

.benefits-list,
.requirements-list,
.values-list,
.video-requirements {
    list-style: none;
    padding: 0;
}

.benefits-list li,
.requirements-list li,
.values-list li,
.video-requirements li {
    padding: 0.5rem 0;
    color: #34495e;
    line-height: 1.6;
    position: relative;
    padding-left: 1.5rem;
}

.benefits-list li:before,
.requirements-list li:before,
.values-list li:before,
.video-requirements li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.benefits-note {
    font-style: italic;
    color: #7f8c8d;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.apply-steps {
    padding-left: 1.5rem;
}

.apply-steps li {
    margin-bottom: 0.8rem;
    color: #34495e;
    line-height: 1.6;
}

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

.apply-button {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.4);
}

.apply-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.6);
    color: white;
}

.additional-info {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.additional-info h4 {
    color: white;
    margin-top: 1.5rem;
}

.additional-info p,
.additional-info li {
    color: #e6f3ff;
}

.additional-info a {
    color: #ffd700;
    text-decoration: underline;
}

.additional-info a:hover {
    color: #ffffff;
}

.final-message {
    font-size: 1.3rem;
    text-align: center;
    margin: 2rem 0 1rem;
    color: #ffd700;
}

.tagline {
    text-align: center;
    font-size: 1.1rem;
    color: #e6f3ff;
    font-style: italic;
}

/* Responsive Design for Passed Page */
@media (max-width: 768px) {
    .passed-container {
        padding: 1rem;
    }
    
    .instructions-content {
        padding: 2rem;
    }
    
    .instructions-content h2 {
        font-size: 1.8rem;
    }
    
    .intro-text {
        font-size: 1.1rem;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .benefits-section,
    .requirements-section,
    .values-section,
    .video-section,
    .apply-section,
    .additional-info {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .benefits-section h3,
    .requirements-section h3,
    .values-section h3,
    .video-section h3,
    .apply-section h3 {
        font-size: 1.3rem;
    }
    
    .apply-button {
        font-size: 1.1rem;
        padding: 1rem 2rem;
    }
}

@media (max-width: 480px) {
    .instructions-content {
        padding: 1.5rem;
    }
    
    .instructions-content h2 {
        font-size: 1.6rem;
    }
    
    .final-message {
        font-size: 1.1rem;
    }
    
    .benefits-section,
    .requirements-section,
    .values-section,
    .video-section,
    .apply-section,
    .additional-info {
        padding: 1rem;
    }
}

/* Resume section styles */
.resume-section {
    background: #fef3c7;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border-left: 4px solid #f59e0b;
}

.resume-section h3 {
    color: #92400e;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.resume-section p {
    color: #92400e;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.resume-format, .resume-example {
    background: #1f2937;
    color: #fbbf24;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    overflow-x: auto;
}

.resume-guidelines {
    list-style: none;
    padding: 0;
}

.resume-guidelines li {
    color: #92400e;
    margin: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.resume-guidelines li:before {
    content: "✓";
    color: #059669;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Subscribe page styles */
.subscribe-page header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 2px 20px rgba(102, 126, 234, 0.3);
}

.subscribe-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.subscribe-content {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.subscribe-header {
    margin-bottom: 3rem;
}

.subscribe-header h1 {
    color: #1f2937;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.subscribe-header p {
    color: #6b7280;
    font-size: 1.1rem;
    line-height: 1.6;
}

.subscribe-form {
    margin: 3rem 0;
    display: flex;
    justify-content: center;
}

.subscribe-form iframe {
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.subscribe-benefits {
    margin: 3rem 0;
}

.subscribe-benefits h2 {
    color: #1f2937;
    font-size: 2rem;
    margin-bottom: 2rem;
}

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

.benefit-item {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #e5e7eb;
    text-align: center;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.benefit-item i {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    color: #1f2937;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.benefit-item p {
    color: #6b7280;
    line-height: 1.6;
}

.back-to-resources {
    margin-top: 3rem;
}

.back-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

@media (max-width: 768px) {
    .subscribe-container {
        padding: 1rem;
    }
    
    .subscribe-content {
        padding: 2rem;
    }
    
    .subscribe-header h1 {
        font-size: 2rem;
    }
    
    .subscribe-form iframe {
        width: 100% !important;
        height: 1200px !important;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* iPad and Tablet Responsive Design */
@media (min-width: 769px) and (max-width: 1024px) {
    .subscribe-container {
        padding: 1.5rem;
    }
    
    .subscribe-content {
        padding: 2.5rem;
    }
    
    .subscribe-header h1 {
        font-size: 2.2rem;
    }
    
    .subscribe-form iframe {
        width: 100% !important;
        height: 1400px !important;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .benefit-item {
        padding: 1.5rem;
    }
    
    .benefit-item h3 {
        font-size: 1.2rem;
    }
    
    .benefit-item p {
        font-size: 0.95rem;
    }
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 480px) {
    .subscribe-container {
        padding: 0.5rem;
    }
    
    .subscribe-content {
        padding: 1.5rem;
    }
    
    .subscribe-header h1 {
        font-size: 1.8rem;
    }
    
    .subscribe-header p {
        font-size: 1rem;
    }
    
    .subscribe-form iframe {
        width: 100% !important;
        height: 1000px !important;
    }
    
    .subscribe-benefits h2 {
        font-size: 1.6rem;
    }
    
    .benefit-item {
        padding: 1rem;
    }
    
    .benefit-item i {
        font-size: 2rem;
    }
    
    .benefit-item h3 {
        font-size: 1.1rem;
    }
    
    .benefit-item p {
        font-size: 0.9rem;
    }
    
    .back-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
} 

 

 