/* Responsive Styles */
@media (max-width: 768px) {
    .hero {
        width: 90%;
        max-width: 400px;
        height: auto;
        object-fit: contain;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .about-text h2 {
        text-align: center;
    }

    .hero-section {
        margin-top: 80px;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .gallery__left img:first-of-type {
        margin-top: 20px;
    }

    .footer-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        max-width: 100%;
    }

    .social-links {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 20px;
    }

    .footer-bottom {
        text-align: center;
        margin-top: 20px;
    }
}

/* Add more media queries for different screen sizes */
@media (max-width: 480px) {
    .main-header {
        padding: 15px 20px;
        height: auto;
    }

    .logo {
        margin-left: 15px;
    }

    .logo-img {
        height: 80px;
    }

    nav {
        gap: 15px;
    }
}

@media (max-width: 1024px) {
    .gallery {
        padding: 50px 20px;
    }

    .text-block {
        padding: 20px;
    }
}
