@font-face {
    font-family: "Gotham";
    src: url("/fonts/GOTHAM-MEDIUM.TTF") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Gotham";
    src: url("/fonts/GOTHAM-BOLD.TTF") format("truetype");
    font-weight: bold;
    font-style: normal;
}

body {
    font-family: "Gotham", sans-serif;
}

.outlet-card {
    background-color: #dc2525;
    color: white;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.icon-container i {
    font-size: 2rem;
    margin-top: 0.2rem;
}

h2 {
    color: #dc2525;
}

.text-content {
    flex: 1;
    color: #ffd700;
}

iframe {
    width: 100% !important;
    height: 300px;
    border: none;
    margin-top: 1rem;
    border-radius: 8px;
}

.outlet-card {
    width: 100% !important;
}

.callus-icon {
    width: 100px;
    height: auto;
    object-fit: contain;
}

.callus-icon:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .outlet-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .outlet-card .btn {
        align-self: stretch;
        width: 100%;
        margin-top: 1rem;
    }

    iframe {
        width: 100%;
        height: 300px;
        border: none;
        border-radius: 12px;
    }
}
