main {
    font-family: 'Roboto Slab', serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 1rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Main container for the card */
.sponsor-container {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.8s 0.2s ease-out forwards;
}

/* Keyframe animation for entry */
@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Inner content wrapper */
.sponsor-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    /* Two column layout */
    gap: 2rem;
}

/* Left Column: Info */
.info-column {
    padding: 2.5rem;
    background: var(--light);
    display: flex;
    flex-direction: column;
    border-right: 2px solid black;
}

.logo-container {
    width: 150px;
    height: 150px;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
}

.logo-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.sponsor-name {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 10px;
    text-shadow: 2px 2px 5px #ffc024c9;
    font-family: "Mozilla Headline", sans-serif;
}

.info-block {
    margin-top: 1.5rem;
}

.info-block h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-text-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-block p,
.info-block a {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--primary-text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-block a:hover {
    color: var(--accent-color);
}

/* Right Column: Details and Map */
.details-column {
    padding: 2.5rem;
}

.details-column h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-color);
    display: inline-block;
}

.description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--secondary-text-color);
    margin-bottom: 2.5rem;
}

.map-container {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Responsive Design */
@media (max-width: 900px) {
    .sponsor-content {
        grid-template-columns: 1fr;
        /* Stack columns on smaller screens */
    }

    .info-column {
        align-items: center;
        text-align: center;
        border-bottom: 2px solid black;
        border-right: none;
    }

    .info-block h3 {
        display: block;
    }
}

@media (max-width: 600px) {
    .info-column,
    .details-column {
        padding: 1.5rem;
    }

    .sponsor-name {
        font-size: 2rem;
    }

    .details-column h2 {
        font-size: 1.5rem;
    }

    .logo-container {
        width: 120px;
        height: 120px;
    }
}