/* Basic Reset & Body Styles */

body {

    margin: 0;

    font-family: Arial, sans-serif; /* Or your preferred font */

    line-height: 1.6;

    color: #fff; /* Default text color for the dark background */

    box-sizing: border-box;

    background-color: #000; /* Dark background for the whole section */

}
 
/* Section Container */

.sponsored-offers-section {

    display: flex;

    justify-content: center;

    align-items: center;

    min-height: 100vh; /* Occupy full viewport height */

    padding: 40px 20px; /* Add some padding around the content */

    box-sizing: border-box;

    background-color: #000; /* Ensure black background */
    margin : 0 5vw;

}
 
/* Content Column (left side) */

.content-column {

    flex: 1; /* Takes up equal space as the image column */

    max-width: 600px; /* Limit content width */

    text-align: center; /* Center text content */

    padding-right: 40px; /* Space between text and image */

    box-sizing: border-box;

}
 
.sub-heading {

    font-size: 2.5em;

    font-weight: normal;

    margin-bottom: 10px;

    color: #fff;

}
 
.main-heading {

    font-size: 6em; /* Large, bold text */

    font-weight: bolder;

    color: #eebb0c; /* Yellow color */

    margin-bottom: 30px;

    text-transform: uppercase;

    line-height: 1;

}
 
.description-text {

    font-size: 1.2em;

    margin-bottom: 40px;

    color: #fff;

}
 
.highlight-text {

    color: #eebb0c; /* Yellow color for "proceeds going to charity" */

    font-weight: bold;

}
 
/* App Download Links */

.app-download-links {

    display: flex;

    justify-content: center; /* Center the download buttons */

    gap: 20px; /* Space between buttons */

    margin-bottom: 40px;

}
 
.app-store-link img {

    height: 80px; 

    width: auto;

    transition: transform 0.2s ease;

}
 
.app-store-link img:hover {

    transform: translateY(-3px); /* Slight lift effect on hover */

}
 
/* Sponsor Button */

.sponsor-button-wrapper {

    display: flex;

    justify-content: center; /* Center the button */

}
 
.sponsor-button {

    display: inline-flex;

    align-items: center;

    background-color: #007bff; /* Blue button color, adjust if needed */

    color: white;

    padding: 12px 25px;

    border: none;

    border-radius: 5px;

    font-size: 1.1em;

    text-decoration: none;

    transition: background-color 0.3s ease;

}
 
.sponsor-button:hover {

    background-color: #0056b3; /* Darker blue on hover */

}
 
.button-icon {

    margin-right: 10px;

    font-size: 1.2em;

}
 
/* Image Column (right side) */

.image-column {

    flex: 1; /* Takes up equal space as the content column */

    display: flex;

    justify-content: center;

    align-items: center;

    position: relative; /* For potential absolute positioning of elements inside */

    padding-left: 40px; /* Space between text and image */

    box-sizing: border-box;

}
 
.app-screenshot {

    max-width: 100%; /* Ensure image fits within its container */

    height: auto;

    display: block;

    /* transform: rotate(15deg);  */

    max-height: 100vh; /* Limit height to viewport height */

}
 
/* Responsive Design */

@media (max-width: 1024px) {

    .sponsored-offers-section {

        flex-direction: column; /* Stack columns vertically on tablets */

        padding: 30px 15px;

    }
 
    .content-column {

        padding-right: 0;

        margin-bottom: 40px; /* Space between content and image */

        max-width: 700px; /* Allow content to take more width */

    }
 
    .image-column {

        padding-left: 0;

        margin-top: 20px; /* Space between content and image */

        max-width: 500px; /* Adjust max-width for image column */

    }
 
    .main-heading {

        font-size: 3.5em;

    }
 
    .app-screenshot {

        transform: none; /* Remove tilt on smaller screens for better readability */

        max-height: 70vh;

    }

}
 
@media (max-width: 768px) {

    .sponsored-offers-section {

        padding: 20px 10px;
        flex-direction: column-reverse;
    }
 
    .content-column {

        margin-bottom: 30px;

    }
 
    .sub-heading {

        font-size: 1.2em;

    }
 
    .main-heading {

        font-size: 2.8em;

        margin-bottom: 20px;

    }
 
    .description-text {

        font-size: 1em;

        margin-bottom: 30px;

    }
 
    .app-download-links {

        flex-direction: column; /* Stack download buttons vertically on mobile */

        gap: 15px;

        align-items: center;

        margin-bottom: 30px;

    }
    .app-store-link img {

        height: 45px;

    }
 
    .sponsor-button {

        padding: 10px 20px;

        font-size: 1em;

    }

}
 
@media (max-width: 480px) {

    .main-heading {

        font-size: 2.2em;

    }
 
    .description-text {

        font-size: 0.9em;

    }
 
    .app-store-link img {

        height: 40px;

    }

}
 