
body {
    background-image: none; /* Adjust path if needed */
    background-size: cover;         /* or 'contain', depending on your design */
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;   /* Optional: keeps the background still on scroll */
  }

.container {
    display: flex;
    margin: 2rem 9rem;    
    padding: 2rem;
    gap: 2rem;
}

.image-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.vertical-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.content-column {
    flex: 3;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.logo-renovate{
    text-align: center;
    margin: 2rem 0;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
}

.logo-image {
    width: 100%;
    height: auto;
    display: block;
}

.text-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: justify;
    padding: 0rem 5rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.highlight {
    color: #000000;
    font-weight: bold;
    font-size: 1.2rem;
    padding: 1rem;
    text-align: justify;
}

.button-container {
    text-align: center;
    margin-top: 2rem;
}

.button-link {
    display: inline-block;
    transition: transform 0.2s ease;
}

.button-link:hover {
    transform: scale(1.05);
}

.button-image {
    max-width: 100%;
    height: auto;
    height: 65px;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
    
    .image-column {
        flex: none;
    }
    
    .content-column {
        flex: none;
    }

    .logo {
        max-width: 200px;
    }
}