@font-face {
    font-family: "SpoofTrial-Bold";
    src: url('fonts/SpoofTrial-Bold.otf') format("opentype");
}

@font-face {
    font-family: "SpoofTrial-Medium";
    src: url('fonts/SpoofTrial-Medium.otf') format("opentype");
}

@font-face {
    font-family: "SpoofTrial-Regular";
    src: url('fonts/SpoofTrial-Regular.otf') format("opentype");
}

body {
    font-family: "spoofTrial-Bold", sans-serif;
}

h1 {
    text-align: center;
    margin-bottom: 30px;
    color: #222;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.pricing-table th,
.pricing-table td {
    padding: 15px;
    text-align: center;
    border: 1px solid #ddd;
    font-size: 20px;
}

.pricing-table th {
    background-color: #f8f9fa;
    font-size: 18px;
    font-weight: bold;
}

.pricing-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.price {
    font-size: 24px;
    font-weight: bold;
    color: #007bff;
    margin: 10px 0;
}

.buy-button {
    background-color: #003479;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.buy-button:hover {
    background-color: #0056b3;
}

.feature-list {
    margin: 30px 0;
    padding: 0;
    list-style-type: none;
}

.feature-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.feature-list li:before {
    content: "✓";
    color: #28a745;
    margin-right: 10px;
}

.sms-info {
    margin-top: 30px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 5px;
}

.sms-info p {
    margin: 5px 0;
}

.pt-100 {
    padding-top: 100px;
}

.pt-50 {
    padding-top: 50px;
}

.pt-30 {
    padding-top: 30px;
}

.pt-20 {
    padding-top: 20px;
}

.pt-10 {
    padding-top: 10px;
}

.pt-0 {
    padding-top: 0;
}

.pb-100 {
    padding-bottom: 100px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-20 {
    padding-bottom: 20px;
}

.p-10 {
    padding-bottom: 10px;
}

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

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.faq-header p {
    color: #6b7280;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}


/* FAQ Item Styles */

.faq-item {
    border: 1px solid #003479;
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #003479;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.faq-question {
    font-size: 20px;
    padding: 20px;
    background-color: var(--light-gray);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #003479;
    color: #fff;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    content: '-';
}

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

.faq-answer {
    font: 400 16px/28px "spoofTrial-Regular", sans-serif;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 700px;
}


/* Animation */

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

.faq-item.active .faq-answer {
    animation: fadeIn 0.3s ease-in-out;
}


/* Responsive */

@media (max-width: 768px) {
    .faq-header h2 {
        font-size: 1.5rem;
    }
    .faq-question {
        padding: 16px;
        font-size: 0.95rem;
    }
    .faq-item.active .faq-answer {
        padding: 16px;
    }
}