﻿.ad-container {
    display: flex;
    justify-content: center;
}

.ad-box {
    display: flex;
    align-items: center;
    width: 1000px; /* Increase the width for a wider ad box */
    border: 1px solid #ccc;
    padding: 20px; /* Increase the padding for more space */
}

.ad-image {
    flex-shrink: 0;
    margin-right: 20px; /* Increase the margin for more space */
    width: 400px; /* Increase the width for a bigger image */
    height: auto; /* Maintain aspect ratio */
}

.ad-text {
    flex-grow: 1;
    margin-left: 40px; /* Adjust the margin value to move the text more towards the center */
}

    .ad-text h3 {
        font-size: 36px; /* Increase the font size for the heading */
    }

    .ad-text p {
        font-size: 18px; /* Increase the font size for the catchline */
    }

.ad-link {
    font-size: 18px; /* Increase the font size for the link */
}
