/* General Styling */
body {
    font-family: Arial, sans-serif;
    color: #333;
    background-color: #f3f3f3;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

section {
    padding: 2rem 1rem;
    margin: 0 auto;
    max-width: 1000px;
}

.content {
    background-color: #ffffff;
    border-radius: 10px;
    margin: 10px;
    padding: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Paragraph Section */
.paragraph {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 1rem;
    margin-bottom: 2rem;
}

.paragraph img {
    width: 380px;
}


.paragraph p {
    font-size: 2rem;
    color: #555;
    text-align: justify;
    flex: 1;
}

/* Videos Section */
.videos {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.videos h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #2d572c;
}

.videos video {
    width: 100%;
    height: auto;
    border-radius: 8px;
    cursor: pointer;
    /* Indicates clickability */
}

/* Why Choose Us Section */
.why-choose-us {
    text-align: center;
    padding: 2rem;

}

.why-choose-us h2 {
    font-size: 2rem;
    color: #2d572c;
    margin-bottom: 1.5rem;
}

.features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.feature {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    width: 200px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    font-size: 2.5rem;
    color: #2d572c;
    margin-bottom: 0.75rem;
}

.feature h3 {
    font-size: 1.2rem;
    color: #2d572c;
    margin-bottom: 0.5rem;
}

.feature p {
    font-size: 0.95rem;
    color: #555;
}

/* Responsive Styles */
@media (max-width: 768px) {
    section {
        padding: 1rem;
    }

    .paragraph {
        flex-direction: column;
        text-align: center;
    }

    .paragraph img {
        width: 180px;
    }

    .collection-items {
        gap: 1rem;
    }

    .features {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .paragraph p {
        font-size: 0.9rem;
    }

    .our-collection h2,
    .why-choose-us h2 {
        font-size: 1.75rem;
    }

    .feature i {
        font-size: 2rem;
    }

    .feature h3 {
        font-size: 1.1rem;
    }

    .feature p {
        font-size: 0.9rem;
    }
}