/* Vertical Image-Text Section */
.vertical-image-text-section {
    padding: 80px 0;
    background-color: #000;
    color: #fff;
}

.vertical-image-text-wrapper {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 60px;
    padding: 0 20px;
}

/* Image Container */
.image-container {
    flex: 0 0 45%;
    position: relative;
        margin: 0 auto;
}

.featured-image {
    width: auto;
    height: 500px;
    object-fit: cover;
}

/* Content Container */
.content-container {
    flex: 1;
    padding-left: 20px;
    display: flex;
}

.content-left {
       margin-right: 20px;
    min-width: 30%;
}

.main-title {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: uppercase;
    line-height: 1.2;

    color: var(--Primary-Alabaster, #F6F4EF);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.9px;


}

.subtitle {
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 30px;
    opacity: 0.8;
    color: var(--Primary-Alabaster, #F6F4EF);
    font-style: normal;
    line-height: normal;
    letter-spacing: 0.6px;
}

.description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e0e0e0;
    font-weight: 300;
}

.description p {
    margin-bottom: 20px;
}

.description p:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .vertical-image-text-section {
        padding: 60px 0;
    }

    .vertical-image-text-wrapper {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .image-container {
        flex: none;
        max-width: 400px;
        margin: 0 auto;
    }

    .content-container {
        padding-left: 0;
    }

    .main-title {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 0.9rem;
    }

    .description {
        font-size: 1rem;
        text-align: left;
    }
}

@media screen and (max-width: 480px) {
    .vertical-image-text-section {
        padding: 40px 0;
    }

    .vertical-image-text-wrapper {
        padding: 0 15px;
        gap: 30px;
    }

    .main-title {
        font-size: 1.8rem;
    }

    .subtitle {
        font-size: 0.8rem;
        margin-bottom: 20px;
    }

    .description {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

/* Alternative Light Theme */
.vertical-image-text-section.light-theme {
    background-color: #f8f8f8;
    color: #333;
}

.light-theme .main-title {
    color: #333;
}

.light-theme .subtitle {
    color: #666;
}

.light-theme .description {
    color: #555;
}

.light-theme .featured-image {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}