main {
    margin-top: 90px;
    padding: 20px;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    opacity: 1;
    background: transparent;
}

.h-wrapper {
    text-align: center;
}

h1 {
    position: relative;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: bold;
    font-family: 'Georgia', serif;
    color: #222;
    padding: 20px 0;
    display: inline-block;
    z-index: 1;
}

h1::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 12px;
    height: 12px;
    background-color: #f2b600;
    z-index: -1;
    opacity: 0.4;
    border-radius: 4px;
}

.faq-opis {
    margin: 20px auto 40px auto;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
    text-align: left;
    font-family: 'Georgia', serif;
    padding-left: 5%;
    padding-right: 5%;
}

.toggle-more {
    color: #d09c3c;
    cursor: pointer;
    text-decoration: underline;
}

.mobile-full {
    display: inline;
}

.mobile-short {
    display: none;
}

.faq-item {
    border: 1px solid #878787;
    background-color: #f2f2f2;
    border-radius: 4px;
    margin-bottom: 1rem;
    overflow: hidden;
    cursor: pointer;
}

.faq-question {
    padding-left: 3rem;
    padding-right: 1rem;
    position: relative;
    cursor: pointer;
    font-size: 1.2rem;
    color: #f2b600;
}

.faq-question::after {
    content: "▾";
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
    font-size: 2rem;
}

.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 1rem;
    background-color: #fff8e1
}

.faq-item.active .faq-answer {
    display: block;
}

p {
    font-size: 1rem;
    font-family: 'Georgia', serif;
}

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

        .faq-opis {
            text-align: center;
            cursor: pointer;
        }
        
        .mobile-full {
            display: none;
        }
        
        .mobile-short {
            display: inline;   
        }

        h2 {
            margin-bottom: 10px;
        }

        .faq-question {
            font-size: 16px;
        }
        
        .faq-answer p{
            font-size: 16px;                
        }
}