<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">       /* Base styling */
       body, html {
        margin: 0;
        padding: 0;
        background-color: #f4f4f4;
    }

    .maincontainer1 {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px;
        background-color: white;
    }

    .banner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px;
        background-color: #fff;
        border-radius: 10px;
        width: 100%;
        max-width: 1000px;
        gap: 20px;
        min-height: 250px;
    }

    .images {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 50%;
        min-width: 250px;
    }

    .main-image {
        width: 100%;
        max-width: 500px;
        height: auto;
        border-radius: 10px;
        object-fit: cover;
    }

    .details {
        max-width: 400px;
        padding: 10px;
        text-align: left;
        width: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .brand-name {
font-family: 'Playfair Display', serif;
font-size: 50px;
font-weight: 700; /* Bold weight */
color: #333;
margin-bottom: 15px;
text-align: left;
}


    .brand-description {
        font-size: 18px;
        color: #666;
        margin-bottom: 20px;
        text-align: left;
    }

    .buttons {
        display: flex;
        justify-content: left;
        gap: 15px;
    }

    .btn {
        text-decoration: none;
        padding: 10px 25px;
        border-radius: 25px;
        text-align: center;
        font-size: 16px;
        font-weight: bold;
        transition: background-color 0.3s ease;
    }

    /* Old Color Scheme */
    .primary-btn {
        background-color: var(--main-color);
        color: white;
    }

    .primary-btn:hover {
        background-color: #d40427;
    }

    .secondary-btn {
        background-color: #f4f4f4;
        color: var(--main-color);
        border: 2px solid var(--main-color);
    }

    .secondary-btn:hover {
        background-color: #d40427;
        color: white;
    }

    /* Mobile View */
    @media screen and (max-width: 768px) {
        .banner {
            flex-direction: column;
            gap: 20px;
            align-items: center;
            min-height: auto;
        }

        .images {
            width: 100%;
            min-width: 0;
        }

        .main-image {
            width: 100%;
            max-width: none;
        }

        .details {
            width: 100%;
            text-align: center;
        }

        .brand-name {
            font-size: 38px;
            text-align:center;
        }

        .brand-description {
            font-size: 18px;
            text-align:center;
        }

        .buttons {
            flex-direction: column;
            gap: 8px;
        }
    }</pre></body></html>