body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333;
}

header {
    display: flex;
    align-items: center;
    padding: 10px;
    background-color: #2f5498; /* Matches your title background */
    color: white;
    position: relative; /* Retain for any absolute positioning if needed */
    margin-bottom: 20px; /* Space below header */
}

/* Info box styling */
.info-box {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    margin: 0 auto 20px;
    max-width: 800px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
    font-size: 1.1rem;
}

.verified {
    color: #ffffff;
    margin-top: 10px;
}

.highlight {
    color: #ff4757;
    font-weight: bold;
}

/* Coupon box styling */
.coupon-box {
    background-color: white;
    border: 2px dashed #75dd84;
    border-radius: 8px;
    padding: 15px;
    margin: 0 auto;
    max-width: 800px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.coupon-code {
    font-size: 1.5rem;
    font-weight: bold;
    color: #75dd84;
    letter-spacing: 2px;
}

.copy-btn {
    background-color: #4ad65f;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.copy-btn:hover {
    background-color: #4ad65f; /* Corrected from #4ad65f to match hover effect */
}

/* Existing styles remain unchanged unless modified below */

.content-wrapper {
    display: flex;
    align-items: center;
    padding: 10px;
    background-color: #2f5498; /* Matches your title background */
    color: white;
    width: 100%; /* Ensure it takes full width */
    justify-content: space-between; /* Distribute space between logo and text */
}

.logo-container {
    margin-left: 10px; /* Space from the left if needed */
}

.logo-container img {
    max-width: 100px; /* Default size for larger screens */
    height: auto;
}

.title-container {
    flex: 1;
    text-align: center; /* Center the text */
}

.title-container h1 {
    margin: 0;
    font-size: 2.2rem;
}

/* Media query for mobile devices (e.g., screens up to 768px) */
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: row; /* Keep side by side on mobile */
        justify-content: space-between; /* Maintain space between elements */
        padding: 10px; /* Adjust padding for mobile */
    }

    .logo-container {
        margin-left: 0; /* Remove left margin on mobile if not needed */
    }

    .logo-container img {
        max-width: 80px; /* Smaller size for mobile */
    }

    .title-container h1 {
        font-size: 1.2em; /* Adjust font size for mobile */
    }
}
