.gg-job-company-faq-container {
    margin: 40px auto;
    width: 100%;
    max-width: 1000px;
}

.gg-job-company-faq-section {
    margin-bottom: 0;
    position: relative;
    background: transparent;
    transition: all 0.3s ease;
    border: none; 
}

.gg-job-company-faq-section:first-child {
    border-top: 2px solid #759E41;
}

.gg-job-company-faq-section {
    border-bottom: 2px solid #759E41;
}

.gg-job-company-faq-section:not(:last-child) {
    margin-bottom: 0;
}

.gg-job-company-faq-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
    position: relative;
}

.gg-job-company-faq-section-title-container {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.gg-job-company-faq-section-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gg-job-company-faq-section-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.gg-job-company-faq-section-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.gg-job-company-faq-toggle-icon {
    font-size: 36px;
    font-weight: 300;
    color: #999999;
    line-height: 1;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.gg-job-company-faq-section-header:hover .gg-job-company-faq-toggle-icon {
    color: #759E41;
    transform: scale(1.05);
}

.gg-job-company-faq-section.gg-active .gg-job-company-faq-toggle-icon {
    color: #759E41;
    transform: rotate(180deg);
}

.gg-job-company-faq-section-content {
    padding: 0 30px 30px 100px; /* Left padding to align with title */
    display: none;
    animation: ggJobCompanyFaqFadeInUp 0.3s ease-out;
}

.gg-job-company-faq-section.gg-active .gg-job-company-faq-section-content {
    display: block;
}

.gg-job-company-faq-item {
    margin: 0;
    padding: 0;
}

.gg-job-company-faq-answer {
    line-height: 1.6;
    font-size: 15px;
}

.gg-job-company-faq-answer p {
    margin-bottom: 15px;
}

.gg-job-company-faq-answer p:last-child {
    margin-bottom: 0;
}

.gg-job-company-faq-answer ul,
.gg-job-company-faq-answer ol {
    margin-left: 20px;
    margin-bottom: 15px;
}

.gg-job-company-faq-answer li {
    margin-bottom: 8px;
}

.gg-job-company-faq-answer strong {
    color: #759E41;
}

/* Animation - unique name to avoid conflicts */
@keyframes ggJobCompanyFaqFadeInUp {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth slide animations for jQuery */
.gg-job-company-faq-section-content {
    overflow: hidden;
}

/* Responsive Design */
@media (max-width: 768px) {
    .gg-job-company-faq-container {
        padding: 0 15px;
    }
    
    .gg-job-company-faq-section-header {
        padding: 20px 20px;
    }
    
    .gg-job-company-faq-section-title-container {
        gap: 15px;
    }
    
    .gg-job-company-faq-section-icon {
        width: 40px;
        height: 40px;
    }
    
    .gg-job-company-faq-section-title {
        font-size: 20px;
    }
    
    .gg-job-company-faq-toggle-icon {
        font-size: 30px;
        width: 45px;
        height: 45px;
    }
    
    .gg-job-company-faq-section-content {
        padding: 0 20px 25px 75px; /* Adjusted for mobile */
    }
    
    .gg-job-company-faq-answer {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .gg-job-company-faq-section-header {
        padding: 18px 15px;
        flex-direction: row;
        align-items: center;
    }
    
    .gg-job-company-faq-section-title-container {
        gap: 12px;
        flex: 1;
    }
    
    .gg-job-company-faq-section-icon {
        width: 35px;
        height: 35px;
    }
    
    .gg-job-company-faq-section-title {
        font-size: 18px;
        line-height: 1.3;
    }
    
    .gg-job-company-faq-toggle-icon {
        font-size: 28px;
        width: 40px;
        height: 40px;
    }
    
    .gg-job-company-faq-section-content {
        padding: 0 15px 20px 62px; /* Adjusted for small mobile */
    }
    
    .gg-job-company-faq-answer {
        font-size: 13px;
        line-height: 1.5;
    }
}

/* Very small screens - stack icon above title */
@media (max-width: 360px) {
    .gg-job-company-faq-section-content {
        padding: 0 15px 20px 15px; /* Remove left offset on very small screens */
    }
    
    .gg-job-company-faq-section-title {
        font-size: 16px;
    }
}

/* Print styles */
@media print {
    .gg-job-company-faq-section {
        break-inside: avoid;
        border: 1px solid #759E41;
        margin-bottom: 20px;
    }
    
    .gg-job-company-faq-toggle-icon {
        display: none;
    }
    
    .gg-job-company-faq-section-content {
        display: block !important;
        padding: 20px;
    }
    
    .gg-job-company-faq-section-header {
        border-bottom: 1px solid #759E41;
    }
}