/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.nav-logo .logo {
    font-size: 0.9rem;
    font-weight: bold;
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.2;
    max-width: 200px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-logo .logo i {
    font-size: 1.2rem;
    color: #3b82f6;
    opacity: 0.9;
}

.nav-logo .logo:hover {
    color: #1d4ed8;
    transform: scale(1.02);
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-cta {
    display: flex;
    align-items: center;
}

.nav-cta .btn {
    padding: 0.6rem 1.2rem;
    font-weight: 600;
    font-size: 0.8rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    border-radius: 50px;
}



/* Hero Section Styles */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('./images/hero.avif');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-top: 80px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.hero-content {
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

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

.btn {
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
}

.btn-primary:hover {
    background: #1d4ed8;
    border-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-logo .logo {
        font-size: 0.8rem;
        max-width: 150px;
    }
    
    .nav-cta .btn {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
        min-width: 90px;
    }

    .hamburger {
        display: none;
    }

    .hero-container {
        text-align: center;
    }

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

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

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

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .hero-container {
        padding: 0 1rem;
    }

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

    .btn {
        padding: 0.5rem 1.1rem;
        font-size: 0.75rem;
    }
}

/* Job Opportunities Section */
.job-opportunities {
    padding: 5rem 0;
    background: #f8fafc;
}

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

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

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

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

.stat-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #64748b;
    font-weight: 500;
}

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

.job-description h3,
.job-requirements h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 1rem;
}

.job-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #475569;
}

.job-requirements ul {
    list-style: none;
    padding: 0;
}

.job-requirements li {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.job-requirements li::before {
    content: '•';
    color: #2563eb;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.job-requirements li strong {
    color: #1e293b;
}

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

.job-cta .btn {
    font-size: 1.1rem;
    padding: 1.2rem 2.5rem;
}

/* Responsive Design for Job Section */
@media (max-width: 768px) {
    .job-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .job-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

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

    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .job-opportunities {
        padding: 3rem 0;
    }

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

    .stat-item {
        padding: 1.5rem;
    }
}

/* How It Works Section */
.how-it-works {
    padding: 5rem 0;
    background: white;
}

.how-it-works-header {
    text-align: center;
    margin-bottom: 4rem;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.step-item {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 20px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 30px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.step-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #475569;
}

/* Responsive Design for How It Works Section */
@media (max-width: 1024px) {
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

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

    .step-item {
        padding: 2rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        top: -15px;
        left: 25px;
    }
}

@media (max-width: 480px) {
    .how-it-works {
        padding: 3rem 0;
    }

    .step-item {
        padding: 1.5rem;
    }

    .step-content h3 {
        font-size: 1.3rem;
    }

    .step-content p {
        font-size: 1rem;
    }
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: #f8fafc;
}

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

.features-text {
    padding-right: 2rem;
}

.features-text .section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.features-text .section-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.features-text .btn {
    font-size: 1.1rem;
    padding: 0.8rem 2.5rem;
}

.features-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
    color: #2563eb;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    color: #1d4ed8;
    opacity: 1;
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

/* Responsive Design for Features Section */
@media (max-width: 1024px) {
    .features-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .features-text {
        padding-right: 0;
    }

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

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

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

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

    .feature-card {
        padding: 1.5rem;
    }

    .feature-icon {
        font-size: 2rem;
    }

    .feature-card h3 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .features {
        padding: 3rem 0;
    }

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

    .features-text .section-title {
        font-size: 1.8rem;
    }

    .feature-card {
        padding: 1.2rem;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: white;
}

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

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #475569;
    font-style: italic;
    position: relative;
    padding-left: 2rem;
}

.testimonial-content p::before {
    content: '“';
    font-size: 3rem;
    color: #2563eb;
    position: absolute;
    left: 0;
    top: -0.5rem;
    font-family: serif;
}

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

.author-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.author-title {
    font-size: 0.9rem;
    color: #64748b;
    display: block;
    margin-bottom: 0.25rem;
}

.testimonial-date {
    font-size: 0.8rem;
    color: #94a3b8;
    display: block;
}

.author-avatar {
    font-size: 2.5rem;
    color: #2563eb;
    opacity: 0.7;
}

/* Responsive Design for Testimonials Section */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 2rem;
    }

    .testimonial-content p {
        font-size: 1rem;
        padding-left: 1.5rem;
    }

    .testimonial-content p::before {
        font-size: 2.5rem;
    }

    .author-info h4 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .testimonials {
        padding: 3rem 0;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-content p {
        font-size: 0.95rem;
        padding-left: 1rem;
    }

    .testimonial-content p::before {
        font-size: 2rem;
    }

    .author-avatar {
        font-size: 2rem;
    }
}

/* Image and Slider Section */
.image-slider-section {
    padding: 5rem 0;
    background: #f8fafc;
}

.image-slider-content {
    display: grid;
    grid-template-columns: 30% 70%;
    gap: 3rem;
    align-items: center;
}

.image-side {
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.slider-image:hover {
    transform: scale(1.05);
}

.slider-side {
    padding-left: 2rem;
}

.slider-container {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: center;
}

.slider-slide.active {
    opacity: 1;
}

.slide-content {
    max-width: 600px;
}

.slide-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #475569;
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 2rem;
}

.slide-content p::before {
    content: '“';
    font-size: 4rem;
    color: #2563eb;
    position: absolute;
    left: 0;
    top: -3rem;
    font-family: serif;
}

.slide-author h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.slider-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    gap: 1rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #2563eb;
    transform: scale(1.2);
}

.slider-dot:hover {
    background: #2563eb;
    transform: scale(1.1);
}

/* Responsive Design for Image Slider Section */
@media (max-width: 1024px) {
    .image-slider-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .slider-side {
        padding-left: 0;
    }

    .slider-container {
        height: 250px;
    }

    .slide-content p {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .image-slider-section {
        padding: 3rem 0;
    }

    .slider-container {
        height: 200px;
    }

    .slide-content p {
        font-size: 1.1rem;
        padding-left: 1.5rem;
    }

    .slide-content p::before {
        font-size: 3rem;
        top: -0.5rem;
    }

    .slider-controls {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .slider-container {
        height: 180px;
    }

    .slide-content p {
        font-size: 1rem;
        padding-left: 1rem;
    }

    .slide-content p::before {
        font-size: 2.5rem;
    }

    .slide-author h4 {
        font-size: 1.1rem;
    }
}

/* Contact Form Section */
.contact-section {
    padding: 5rem 0;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.02);
    z-index: 1;
}

.contact-section .container {
    position: relative;
    z-index: 2;
}

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

.contact-header .section-title {
    color: #1e293b;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-header .section-subtitle {
    color: #64748b;
    font-size: 1.25rem;
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.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;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: white;
    color: #1e293b;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    transform: translateY(-1px);
}

.form-group input:hover,
.form-group textarea:hover {
    border-color: #2563eb;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border: none;
    border-radius: 12px;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.4);
}

.submit-btn:active {
    transform: translateY(-1px);
}

.submit-btn i {
    font-size: 1.1rem;
}

/* Responsive Design for Contact Section */
@media (max-width: 768px) {
    .contact-section {
        padding: 3rem 0;
    }

    .contact-header .section-title {
        font-size: 2.5rem;
    }

    .contact-form {
        padding: 2rem;
        margin: 0 1rem;
    }

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

    .form-group input,
    .form-group textarea {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-header .section-title {
        font-size: 2rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 0.95rem;
    }

    .submit-btn {
        padding: 1.1rem;
        font-size: 1rem;
    }
}

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

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

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #f8fafc;
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

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

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

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

.faq-question i {
    color: #2563eb;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.faq-item.active .faq-answer {
    padding: 1.5rem 2rem;
    max-height: 200px;
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.6;
    color: #475569;
    margin: 0;
}

/* Responsive Design for FAQ Section */
@media (max-width: 768px) {
    .faq-section {
        padding: 3rem 0;
    }

    .faq-question {
        padding: 1.2rem 1.5rem;
    }

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

    .faq-item.active .faq-answer {
        padding: 1.2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: 1rem 1.2rem;
    }

    .faq-item.active .faq-answer {
        padding: 1rem 1.2rem;
    }

    .faq-answer p {
        font-size: 0.95rem;
    }
}

/* Final CTA Section */
.final-cta {
    padding: 5rem 0;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('./images/Untitled.avif');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    color: white;
    text-align: center;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.final-cta .container {
    position: relative;
    z-index: 2;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.cta-btn {
    font-size: 1.2rem;
    padding: 0.8rem 3rem;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border: none;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-3px);
    color: white;
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section {
    padding: 0 1rem;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #2563eb;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-title i {
    font-size: 1.3rem;
    color: #3b82f6;
    opacity: 0.9;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #cbd5e1;
    margin-bottom: 1rem;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

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

.footer-links a:hover {
    color: #2563eb;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    color: #cbd5e1;
    font-size: 0.9rem;
    line-height: 1.4;
}

.footer-contact i {
    color: #2563eb;
    width: 16px;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 1rem;
    text-align: center;
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Responsive Design for Final CTA and Footer */
@media (max-width: 768px) {
    .final-cta {
        padding: 3rem 0;
    }

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

    .cta-btn {
        font-size: 1.1rem;
        padding: 1.1rem 2.5rem;
    }

    .footer {
        padding: 2rem 0 1rem;
    }

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

@media (max-width: 480px) {
    .cta-title {
        font-size: 1.8rem;
    }

    .cta-btn {
        font-size: 1rem;
        padding: 1rem 2rem;
    }

    .footer-section {
        padding: 0 0.5rem;
    }
}

/* Terms Page Styles */
.terms-section {
    padding: 5rem 0;
    background: #f8fafc;
    min-height: 80vh;
}

.terms-header {
    text-align: center;
    margin-bottom: 3rem;
}

.terms-header .section-title {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.terms-header .section-subtitle {
    color: #64748b;
    font-size: 1.1rem;
}

.terms-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.terms-section-item {
    margin-bottom: 2.5rem;
}

.terms-section-item:last-child {
    margin-bottom: 0;
}

.terms-section-item h2 {
    color: #1e293b;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 0.5rem;
}

.terms-section-item p {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.terms-section-item ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.terms-section-item li {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.terms-section-item strong {
    color: #1e293b;
    font-weight: 600;
}

.terms-section-item h3 {
    color: #1e293b;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 1.5rem 0 0.5rem 0;
}

/* Responsive Design for Terms Page */
@media (max-width: 768px) {
    .terms-section {
        padding: 3rem 0;
    }
    
    .terms-header .section-title {
        font-size: 2rem;
    }
    
    .terms-content {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .terms-section-item h2 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .terms-section {
        padding: 2rem 0;
    }
    
    .terms-header .section-title {
        font-size: 1.8rem;
    }
    
    .terms-content {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .terms-section-item h2 {
        font-size: 1.1rem;
    }
}
