* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Color Variables */
:root {
    --primary-dark: #000000;
    --primary-accent: #B1BF26;
    --text-light: #ffffff;
    --text-muted: #a0a0a0;
    --border-color: #2a2a2a;
    --hover-bg: #1a1a1a;
}

body {
    background-color: var(--primary-dark);
    color: var(--text-light);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

/* FAQ Section */
.faq-section {
    background-color: var(--primary-dark);
    padding: 60px 0;
}

/* FAQ Images Grid */
.faq-images-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    height: auto;
}

.faq-image-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--hover-bg);
}

.card-1 {
    grid-column: 1 / -1;
    background-color: var(--primary-accent);
    padding: 30px;
    text-align: center;
    height: 250px;
}

.experience-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background-color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--primary-accent);
    margin-bottom: 20px;
}

.experience-box h3 {
    color: #000000;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.3;
}

.card-2, .card-3, .card-4 {
    height: 180px;
}

.faq-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-5 {
    grid-column: 1 / -1;
    height: 150px;
    background-color: var(--text-light);
    justify-content: center;
    padding: 20px;
}

.projects-completed {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #000000;
}

.icon-badge {
    width: 70px;
    height: 70px;
    background-color: var(--primary-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: #000000;
    flex-shrink: 0;
}

.projects-completed p {
    font-weight: 700;
    font-size: 22px;
    margin: 0;
    line-height: 1.2;
}

.projects-completed span {
    font-size: 14px;
    font-weight: 500;
    display: block;
}

/* FAQ Header */
.faq-header {
    margin-bottom: 40px;
}

.faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--hover-bg);
    border: 2px solid var(--primary-accent);
    color: var(--primary-accent);
    padding: 8px 15px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
}

.faq-badge i {
    font-size: 16px;
}

.faq-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    color: var(--text-light);
}

.faq-highlight {
    color: var(--primary-accent);
    display: block;
}

/* FAQ Accordion */
.faq-accordion {
    gap: 0;
}

.faq-item {
    background-color: transparent;
    border: 1px solid var(--border-color);
    border-top: none;
    margin-bottom: 0;
}

.faq-item:first-child {
    border-top: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: 1px solid var(--border-color);
}

.accordion-header {
    padding: 0;
}

.faq-button {
    background-color: transparent !important;
    color: var(--text-light) !important;
    border: none !important;
    box-shadow: none !important;
    padding: 25px 20px !important;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    position: relative;
    transition: all 0.3s ease;
}

.faq-button:hover {
    background-color: var(--hover-bg) !important;
    color: var(--primary-accent) !important;
}

.faq-button:not(.collapsed) {
    background-color: var(--hover-bg) !important;
    color: var(--primary-accent) !important;
}

.faq-number {
    color: var(--primary-accent);
    font-weight: 700;
    min-width: fit-content;
}

.faq-question {
    flex: 1;
    text-align: left;
}

.faq-icon {
    color: var(--primary-accent);
    font-size: 12px;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-button:not(.collapsed) .faq-icon {
    transform: rotate(180deg);
}

/* FAQ Answer */
.faq-answer {
    background-color: transparent;
    border-top: 1px solid var(--border-color);
    padding: 25px 20px !important;
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 15px;
}

.accordion-body {
    padding: 0 !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-section {
        padding: 40px 0;
    }

    .faq-title {
        font-size: 32px;
    }

    .faq-badge {
        display: inline-flex;
        margin-bottom: 15px;
        font-size: 12px;
    }

    .faq-button {
        padding: 18px 15px !important;
        font-size: 14px;
        gap: 10px;
    }

    .faq-number {
        font-size: 14px;
    }

    .faq-answer {
        padding: 18px 15px !important;
        font-size: 14px;
    }

    .faq-images-grid {
        gap: 15px;
    }

    .card-1, .card-5 {
        height: auto;
        padding: 25px;
    }

    .card-2, .card-3, .card-4 {
        height: 150px;
    }

    .icon-circle {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }

    .experience-box h3 {
        font-size: 20px;
    }

    .icon-badge {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .projects-completed {
        gap: 10px;
    }

    .projects-completed p {
        font-size: 18px;
    }

    .projects-completed span {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .faq-section {
        padding: 30px 15px;
    }

    .container {
        padding: 0 15px;
    }

    .faq-title {
        font-size: 24px;
    }

    .faq-badge {
        font-size: 11px;
        padding: 6px 12px;
    }

    .faq-button {
        padding: 15px 12px !important;
        font-size: 13px;
    }

    .faq-number {
        font-size: 12px;
    }

    .faq-question {
        line-height: 1.3;
    }

    .faq-answer {
        padding: 15px 12px !important;
        font-size: 13px;
    }

    .faq-images-grid {
        gap: 10px;
    }

    .card-1 {
        padding: 20px;
        height: auto;
    }

    .card-2, .card-3, .card-4 {
        height: 120px;
    }

    .icon-circle {
        width: 50px;
        height: 50px;
        font-size: 24px;
        margin-bottom: 15px;
    }

    .experience-box h3 {
        font-size: 16px;
    }

    .card-5 {
        padding: 15px;
        height: auto;
    }

    .icon-badge {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .projects-completed {
        gap: 8px;
        flex-wrap: wrap;
    }

    .projects-completed p {
        font-size: 16px;
    }
}

/* Animations */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-answer {
    animation: slideDown 0.3s ease;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-accent);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #9fa81e;
}