/* Base Styles */
:root {
    --primary: #2563eb;
    --secondary: #10b981;
    --dark: #0f172a;
    --light: #f8fafc;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', system-ui, sans-serif;
}

body {
    line-height: 1.6;
    color: var(--dark);
    background: var(--light);
}

/* Affiliate Disclosure */
.affiliate-disclosure {
    background: #fff3e0;
    padding: 12px 2rem;
    text-align: center;
    font-size: 0.9rem;
    border-bottom: 2px solid #ffe0b2;
    transition: background 0.3s;
}
.affiliate-disclosure:hover {
    background: #ffe8c2;
}

/* Header */
header {
    background: linear-gradient(135deg, var(--primary), #1e40af);
    color: white;
    padding: 8rem 2rem 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
header:after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--light);
    transform: skewY(-3deg);
}
header h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInDown 1s ease-out;
}
header p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    animation: fadeIn 1.5s ease-out;
}

/* CTA Button (also used in header & CTA section) */
.cta-button {
    display: inline-flex;
    align-items: center;
    background: white;
    color: var(--secondary);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}
.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* About Us Section */
.about-us {
    padding: 4rem 2rem;
    background: white;
    text-align: center;
}
.about-us h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}
.about-us p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.feature-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

/* How It Works Section */
.how-it-works {
    padding: 4rem 2rem;
    background: white;
    text-align: center;
}
.how-it-works h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}
.how-it-works ol {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    list-style: decimal;
    padding-left: 1.5rem;
    font-size: 1.1rem;
}
.how-it-works li {
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Comparison Table */
.comparison-table {
    background: var(--light);
    padding: 4rem 2rem;
}
.comparison-table table {
    width: 100%;
    max-width: 1000px;
    margin: 2rem auto;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.comparison-table th,
.comparison-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}
.comparison-table th {
    background: var(--primary);
    color: white;
}

/* Industry Insights Section */
.industry-insights {
    padding: 4rem 2rem;
    background: white;
    text-align: center;
}
.industry-insights h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}
.industry-insights p {
    max-width: 800px;
    margin: 0 auto 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Global Hiring Trends Section */
.global-hiring-trends {
    padding: 4rem 2rem;
    background: #f0f4ff;
    text-align: center;
}
.global-hiring-trends h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}
.global-hiring-trends p {
    max-width: 800px;
    margin: 0 auto 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    padding: 4rem 2rem;
    background: white;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}
.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary);
}
.faq-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f9f9f9;
    border-left: 4px solid var(--primary);
    border-radius: 5px;
    transition: background 0.3s;
}
.faq-item:hover {
    background: #f0f4ff;
}
.faq-item h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}
.faq-item p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 4rem 2rem;
    background: linear-gradient(45deg, var(--dark), #1e293b);
    color: white;
    text-align: center;
}
.testimonials .testimonial {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    max-width: 800px;
    margin: 0 auto 2rem;
    animation: fadeInUp 1s ease-out;
}
.testimonials .testimonial cite {
    display: block;
    margin-top: 1rem;
    font-weight: bold;
    font-style: normal;
}

/* Call To Action (CTA) Section */
.cta-section {
    text-align: center;
    padding: 6rem 2rem;
    background: var(--secondary);
    color: white;
    position: relative;
}
.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}
.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Service Terms Section */
#terms {
    padding: 4rem 2rem;
    background: var(--light);
    text-align: center;
}
#terms h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}
#terms h3 {
    font-size: 1.8rem;
    margin-top: 1.5rem;
}
#terms p {
    max-width: 800px;
    margin: 0 auto 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
}
.legal-links {
    margin-top: 1.5rem;
}
.legal-links a {
    margin: 0 1rem;
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s;
}
.legal-links a:hover {
    text-decoration: underline;
    color: var(--secondary);
}

/* Footer */
footer {
    padding: 2rem;
    background: var(--dark);
    color: white;
    text-align: center;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.2rem;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .faq,
    .global-hiring-trends,
    .industry-insights,
    .about-us {
        padding: 3rem 1rem;
    }
    .cta-section {
        padding: 4rem 1rem;
    }
}
