/* Global Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to right, rgb(216, 56, 56), rgb(33, 103, 168));
    color: #fff;
    display: flex;
        flex-direction: column;
    min-height: 100vh;
    }

/* Header Styles */
header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 2rem;
    background-color: transparent;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(255, 0, 0, 0.2); /* Classic Red Shadow */
    margin-bottom: 2rem;
    transform: rotate(-5deg);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: rotate(0deg);
}

.logo img {
    height: 250px;
}

/* Hero Section Styles */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    background-color: transparent;
    color: #fff;
    box-shadow: 0 4px 8px rgba(255, 0, 0, 0.2); /* Classic Red Shadow */
}

.hero-content {
    flex: 1;
    padding-right: 2rem;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    padding: 0.8rem 1.5rem;
    background-color: #fff;
    color: rgb(212, 68, 68);
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(3, 69, 112, 0.1); /* Classic Blue Shadow */
}

.cta-button:hover {
    background-color: #f0f0f0;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(255, 0, 0, 0.2); /* Classic Red Shadow */
}

.code-snippet {
    background-color: #000;
    color: #fff;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    width: 50%;
    box-shadow: 0 4px 8px rgba(255, 0, 0, 0.2); /* Classic Red Shadow */
}

.code-snippet pre {
    margin: 0;
    font-family: 'Courier New', monospace;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.qr-code {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

/* Footer Styles */
footer {
    text-align: center;
    padding: 1rem;
    background-color: #000;
    color: #f0f0f0;
    box-shadow: 0 -2px 4px rgba(2, 52, 71, 0.1); /* Classic Blue Shadow */
    margin-top: auto;
}

/* Responsive Styles */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 1rem;
    }

    .hero {
        flex-direction: column;
        padding: 1rem;
    }

    .hero-content {
        padding-right: 0;
        text-align: center;
        margin-bottom: 2rem;
    }

    .hero-image {
        margin-top: 2rem;
    }

    .code-snippet {
        width: 80%;
    }

    .qr-code {
        max-width: 80%;
    }
}

