/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

/* Stylish Section Styles */
.stylish-section {
    background-color: white;
    padding: 20px 40px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    width: 80%;
    margin: 20px auto;
    text-align: center;
    color: black;
    animation: slideIn 1s ease-out;
    position: relative;
    overflow: hidden;
    height: fit-content;
    border-top: 2px solid black;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#toggle-button {
    background: none;
    border: none;
    color: black;
    font-size: 20px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

#toggle-button.collapsed {
    transform: rotate(0deg);
}

#toggle-button.expanded {
    transform: rotate(180deg);
}

#stylish-section-content.collapsed {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

#stylish-section-content {
    transition: max-height 0.5s ease;
    max-height: 1000px; /* Large enough to fit the content */
}

.stylish-section h1 {
    font-size: 20px;
    margin-bottom: 20px;
    color: black;
}

.stylish-section p {
    font-size: 1.2em;
    line-height: 1.6;
}

/* Genuine Threads Section Styles */
.genuine-threads-section {
    background-color: #f7f7f7;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    max-width: 86%;
    margin: 15px auto;
    border-top: 3px solid black;
    animation: fadeIn 1s ease-in-out;
}

/* Heading styling */
.genuine-threads-section h2 {
    font-size: 24px;
    color: #280023;
    text-align: center;
    margin-bottom: 15px;
}

.genuine-threads-section .highlight-city {
    font-weight: bold;
    color: #ff6347;
    font-size: 26px;
}

/* Buttons styling */
.buttons-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-button1 {
    background-color: green;
    color: white;
    padding: 10px 20px;
    font-size: 14px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-button i {
    font-size: 18px;
    transform: scaleX(-1);
}

.contact-button:hover {
    /*background-color: rgb(44, 44, 214);*/
    transform: translateY(-3px);
}

.contact-button:active {
    background-color: #cc4b33;
    transform: translateY(0);
}
.contact-button{
    background-color: green;
    color: white;
    padding: 10px 20px;
    font-size: 14px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
    color: white;
}
.contact-button .whatsapp-button i{
    /*transform: scaleX(-1);*/
    font-size: 29px;
}
/* Paragraph styling */
.genuine-threads-section p {
    font-size: larger;
    color: #333;
    line-height: 1.5;
    margin-bottom: 15px;
    text-align: left;
   /*animation: slideIn 1s ease;*/
    
}

/* Second heading styling */
.genuine-threads-section h3 {
    font-size: 20px;
    color: #280023;
    margin-bottom: 10px;
    /*animation: fadeIn 1s ease;*/
}

/* Bullet points styling */
.bullet-points {
    list-style: none;
    padding-left: 0;
    /*animation: slideIn 1s ease;*/
}

.bullet-points li {
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.bullet-points li:before {
    content: "•";
    font-size: 18px;
    color: #ff6347;
    margin-right: 8px;
    display: inline-block;
}

/* Animations */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .stylish-section {
        width: 85%;
    }

    #toggle-button {
        font-size: 18px;
    }

    .stylish-section h1 {
        font-size: 18px;
    }
}

@media (max-width: 992px) {
    .stylish-section {
        width: 90%;
        padding: 15px 30px;
    }

    #toggle-button {
        font-size: 16px;
    }

    .stylish-section h1 {
        font-size: 16px;
    }

    .stylish-section p {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .stylish-section {
        width: 95%;
        padding: 10px 20px;
        margin: 15px auto;
    }

    #toggle-button {
        font-size: 14px;
    }

    .stylish-section h1 {
        font-size: 14px;
    }

    .stylish-section p {
        font-size: 1em;
        line-height: 1.4;
    }
    .genuine-threads-section {
       width: 86%;
    }
    .contact-button {
        padding: 10px 8px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .stylish-section {
        width: 86%;
        padding: 10px;
        margin: 10px auto;
    }

    .section-header {
        justify-content: center;
    }

    #toggle-button {
        font-size: 12px;
    }

    .stylish-section h1 {
        font-size: 12px;
    }

    .stylish-section p {
        font-size: 0.9em;
        line-height: 1.3;
    }
}

@media (max-width: 480px) {
    .stylish-section {
        padding: 8px;
    }

    .stylish-section h1 {
        font-size: 18px;
    }

    .stylish-section p {
        font-size: 0.85em;
        font-style: italic;
    }

    #toggle-button {
        font-size: 21px;
    }
}

@media (max-width: 360px) {
    .stylish-section {
        padding: 6px;
    }

    .stylish-section h1 {
        font-size: 10px;
    }

    .stylish-section p {
        font-size: 0.8em;
    }

    #toggle-button {
        font-size: 8px;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
