/* Global Reset & Base Settings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

:root {
    --primary: #1E40AF; /* Primary: Deep Blue */
    --secondary: #F97316; /* Secondary: Orange */
    --light-gray: #F3F4F6;
    --dark-gray: #374151;
    --white: #FFFFFF;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

body {
    color: var(--dark-gray);
    line-height: 1.6;
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation Bar Styles */
header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary);
    text-decoration: none;
}

.nav-cta {
    background-color: var(--secondary);
    color: var(--white) !important;
    padding: 8px 16px;
    border-radius: 4px;
}

.nav-cta:hover {
    background-color: #EA580C;
}

.mobile-menu {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section Styles */
.hero {
    padding: 80px 0;
    display: flex;
    align-items: center;
    gap: 60px;
			text-align: center;
}

.hero-content {
    flex: 1;
    margin-bottom: 30px;
}

.hero h1 {
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary);
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--dark-gray);
}

.hero-cta {
    display: flex;
    gap: 20px;
}


.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
}

.highlight-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--light-gray);
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 500;
    color: var(--primary);
    font-size: 14px;
}

.btn {
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    text-align: center;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
    /* Lazy Loading Optimization */
    loading: lazy;
}

/* Features Section Styles */
.features {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 60px;
    color: var(--primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary);
}

.feature-tags {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.tag {
    background-color: var(--light-gray);
    color: var(--primary);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

/* Process Section Styles */
.process {
    padding: 80px 0;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.process-step {
    flex: 1;
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.process-step h4 {
    font-size: 18px;
    margin-bottom: 10px;
}


/* Supported Formats Section */
.formats {
    padding: 70px 0;
    background-color: var(--light-gray);
}

.section-title {
    text-align: center;
    font-size: 34px;
    margin-bottom: 60px;
    color: var(--primary);
}

.formats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.format-card {
    background-color: var(--white);
    padding: 25px 15px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.format-card:hover {
    transform: translateY(-5px);
}

.format-icon {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 12px;
}

.format-card h4 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 8px;
}

.format-desc {
    font-size: 13px;
    color: var(--dark-gray);
}

/* FAQ Section Styles */
.faq {
    padding: 80px 0;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--light-gray);
    border-radius: 8px;
}

.faq-question {
    padding: 15px 20px;
    background-color: var(--light-gray);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.show {
    padding: 20px;
    max-height: 500px;
}

/* Testimonials Section */
.testimonials {
    padding: 70px 0;
    background-color: var(--light-gray);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 35px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.testimonial-quote {
    font-size: 16px;
    margin-bottom: 25px;
    color: var(--dark-gray);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
}

.author-info h5 {
    font-size: 16px;
    color: var(--primary);
}

.author-info p {
    font-size: 13px;
    color: var(--dark-gray);
}

/* Sticky CTA Button */
.sticky-cta {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.sticky-btn {
    background-color: var(--secondary);
    color: var(--white);
    padding: 15px 20px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.sticky-btn:hover {
    background-color: #EA580C;
    transform: scale(1.05);
}

/* Responsive Adaptation */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 60px 0;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 40px;
    }

    .mobile-menu {
        display: block;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .sticky-cta {
        right: 20px;
        bottom: 20px;
    }
    
    .sticky-btn {
        padding: 12px 16px;
        font-size: 14px;
    }
}