main {
    padding-top: 100px;
    display: flex;
    justify-content: center;
}

.content {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

.text-section {
    flex: 1;
    text-align: left;
    padding-right: 20px;
}

.image-section {
    flex: 1;
    text-align: center;
    position: relative;
}

.image-section img {
    max-width: 100%;
    height: auto;
    opacity: 0;
    transform: scale(0.9);
    animation: fadeInZoom 1.5s forwards;
}

@keyframes fadeInZoom {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.image-section img:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
    transition: transform 0.5s ease, filter 0.5s ease;
}

.contact-button {
    display: block;
    width: 80%;
    max-width: 300px;
    margin: 20px auto;
    padding: 15px 20px;
    background-color: rgb(93, 77, 123);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    text-transform: none;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s, background-color 0.3s, font-size 0.3s;
    font-family: 'ABeeZee-Regular';
}

.contact-button:hover {
    transform: scale(1.1);
    background-color: rebeccapurple;
    font-size: 1.3em;
}

h1 {
    font-size: 2em;
    color: rgb(93, 77, 123);
    text-transform: uppercase; 
    font-family: 'Seaside Resort NF';
    text-align: center;
    padding-top: 0px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    body {
        padding-top: 100px;
        font-size: 1em;
    }

    main {
        padding-top: 75px;
        flex-direction: column;
    }

    .content {
        flex-direction: column;
    }

    .text-section {
        padding-right: 0;
        text-align: center;
    }

    .image-section img {
        max-width: 80%;
        transform: translateX(0);
        margin-top: 20px;
    }

    h1 {
        font-size: 1.5em;
    }

    .contact-button {
        font-size: 1em;
        width: 100%;
        max-width: none;
    }
}
