:root {
    --primary-color: #0325bb;
    --secondary-color: #232188;
    --background: #ececec;
    --btn: #ff0000;
}

body {
    font-family: 'Segoe UI', system-ui, sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--background);
    line-height: 1.6;
}

.header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem 1rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header h1 {
    font-size: 2.2rem;
    margin: 0 0 1rem;
}

.cta-section {
    display: flex;
    position: sticky;
    top: 0;
    background: var(--secondary-color);
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    justify-content: center;
    z-index: 1000;
}

.cta-section1 {
    display: flex;
    position: sticky;
    color: #fff;
    top: 0;
    background: var(--secondary-color);
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    justify-content: center;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    color: white;
    background-color: var(--btn);
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
    animation: pulse 2s infinite;
    font-weight: bold;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 20px rgba(255, 0, 0, 0.8);
}

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

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

.benefit-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: center;
}

.benefit-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
    margin: 2rem 0;
}

th, td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

th {
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
}

tr:hover {
    background-color: #f8fff9;
}

.company-cell {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.company-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.testimonials-section {
    padding: 4rem 1rem;
    background: #f8fff9;
    text-align: center;
}

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

.testimonial-card {
    background: rgb(240, 240, 240);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.testimonial-header {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
}

.testimonial-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
}

.faq-section {
    padding: 4rem 1rem;
    background: white;
    text-align: center;
}

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

.faq-item {
    border-bottom: 1px solid #eee;
    padding: 1rem 0;
}

.faq-question {
    font-weight: 600;
    padding: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 1rem;
    color: #666;
    line-height: 1.6;
}

.faq-question i {
    transition: transform 0.3s ease;
}

details[open] .faq-question i {
    transform: rotate(180deg);
}

.certifications-section {
    padding: 4rem 1rem;
    text-align: center;
    background: #f8f9fa;
}

.certifications-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    max-width: 1200px;
    margin: 2rem auto;
}

.certification-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    width: 250px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.certification-card img {
    height: 80px;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .header h1 {
        font-size: 1.8rem;
    }

    table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .cta-button {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }

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

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}