.persianas-section {
    padding: 2rem 1rem;
    background: linear-gradient(to right, #f9f9f9, #ececec);
    font-family: 'Segoe UI', Tahoma, Verdana, sans-serif;
}

.container-persianas {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.image-container img {
    width: 100%;
    max-width: 450px;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-container img:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.text-container {
    text-align: center;
    max-width: 600px;
    color: #333;
    padding: 0 1rem;
}

.text-container h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 600;
}

.text-container p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

/* Responsive layout for tablets and desktops */
@media (min-width: 768px) {
    .container {
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    .text-container {
        text-align: left;
        padding: 0 2rem;
    }

    .text-container h2 {
        font-size: 2.2rem;
    }

    .text-container p {
        font-size: 1.05rem;
    }
}

/* Optional: large screens */
@media (min-width: 1024px) {
    .text-container h2 {
        font-size: 2.5rem;
    }

    .text-container p {
        font-size: 1.1rem;
    }
}
