.welcome-section {
    width: 100%;
    background-color: #000000; /* Black background */
    color: #ffffff; /* White text */
    padding: 60px 20px;
    font-family: 'Montserrat', sans-serif;
}

.welcome-section .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.welcome-section .welcome-image {
    flex: 1;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.welcome-section .welcome-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.welcome-section .welcome-content {
    flex: 1;
    max-width: 50%;
    text-align: left;
}

.welcome-section .welcome-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
    color: #ffffff;
    margin: 0;
    line-height: 1;
}

.welcome-section .welcome-content h2 small {
    font-size: 2.5rem;
    color: #ffffff;
    font-weight: 600;
    display: block;
    margin-top: 0.2rem;
}

.welcome-section .welcome-content h2 .special-text {
    font-family: 'Great Vibes', cursive;
    font-size: 7rem;
    color: #dfb84d;
    display: block;
    margin-bottom: 0;
}

.welcome-section .welcome-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    line-height: 1.8;
    margin-top: 1rem;
    color: #ffffff;
    text-align: justify;
}

/* Responsive adjustments */
@media (max-width: 1600px) {
    .welcome-section .welcome-image {
        max-width: 590px;
    }
    .welcome-section .welcome-content h2 {
        font-size: 4rem;
    }
    .welcome-section .welcome-content h2 small {
        font-size: 2.2rem;
    }
    .welcome-section .welcome-content h2 .special-text {
        font-size: 4.1rem;
    }
    .welcome-section .welcome-content p {
        font-size: 1.3rem;
    }
}

@media (max-width: 1024px) {
    .welcome-section .container {
        flex-direction: column;
    }
    .welcome-section .welcome-image,
    .welcome-section .welcome-content {
        max-width: 100%;
    }
    .welcome-section .welcome-content h2 {
        font-size: 3rem;
    }
    .welcome-section .welcome-content h2 small {
        font-size: 1.5rem;
    }
    .welcome-section .welcome-content h2 .special-text {
        font-size: 2.5rem;
    }
    .welcome-section .welcome-content p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .welcome-section .container {
        padding: 20px;
    }
    .welcome-section .welcome-content h2 {
        font-size: 2.5rem;
    }
    .welcome-section .welcome-content h2 small {
        font-size: 1.2rem;
    }
    .welcome-section .welcome-content h2 .special-text {
        font-size: 2rem;
    }
    .welcome-section .welcome-content p {
        font-size: 0.9rem;
    }
}
