.faq-section {
    padding: 100px 24px;
    background: #fff;
}
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}
.faq-header {
    text-align: center;
    margin-bottom: 60px;
}
.faq-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 400; /* Hostinger uses a lighter, elegant heading weight */
    color: var(--h-dark);
    margin: 0;
    letter-spacing: -1px;
}
.faq-header p {
    display: none; /* Hostinger doesn't have a sub-description */
}
.faq-accordion {
    display: flex;
    flex-direction: column;
}
.faq-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid #eaeaea; /* Thin light gray divider */
}
/* Top border removed per user request */
.faq-item summary {
    padding: 24px 0;
    font-family: var(--font-body); /* Using body font for questions */
    font-size: 16px;
    font-weight: 500;
    color: #2d3748;
    cursor: pointer;
    list-style: none;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    outline: none;
}
.faq-item summary:focus {
    outline: none;
}
.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-item summary::after {
    content: '+';
    font-size: 20px;
    font-weight: 300;
    color: #1a202c;
    line-height: 1;
    transition: transform 0.2s ease;
}
.faq-item[open] summary::after {
    content: '-';
    transform: rotate(180deg);
}
.faq-content {
    padding: 0 0 24px 0;
    color: #4a5568;
    font-size: 15px;
    line-height: 1.6;
}
