/* --- Podstawowe resety i style globalne --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    color: #333;
    text-align: center;
}

.credits-bar {
    background-color: #1c1c1e;
    color: #86868b;
    padding: 15px 20px;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 400;
}

.credits-bar p {
    margin: 0;
}

/* Karuzela z logotypami */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.top-logos {
    background: white;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    overflow: hidden;
    position: relative;
    display: flex;
}

.logos-slide {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    animation: scroll 30s linear infinite;
}

.logos-slide img {
    height: 45px;
    margin: 0 40px;
    flex-shrink: 0;
}

/* --- Sekcja główna (Hero) --- */
.hero {
    position: relative;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    overflow: hidden;
}

#background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    opacity: 0.5;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 0, 119, 0.4);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.4);
}

.main-logo {
    max-width: 200px;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 6rem;
    font-weight: 900;
    color: white;
    margin: 0;
    opacity: 0;
}
.hero-content h1.fade-out {
    opacity: 0;
}
@keyframes slideInUp {
    from { opacity: 0; transform: translateY(60px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes slideOutUp {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(-60px); }
}
.slide-in-up { animation: slideInUp 0.7s ease-out forwards; }
.slide-out-up { animation: slideOutUp 0.7s ease-out forwards; }

.countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.time-box {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 5px;
    min-width: 100px;
}
.time-box span {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
}
.time-box small {
    display: block;
    font-size: 0.8rem;
    font-weight: 400;
}

.promo-button {
    display: inline-block;
    margin-top: 50px;
    background-color: #ff0077;
    color: white;
    border: none;
    padding: 18px 50px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 0, 119, 0.25);
    text-decoration: none;
    text-shadow: none;
}

.promo-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 0, 119, 0.8);
}

/* --- Sekcja Gier --- */
.games-section {
    background-color: #1c1c1e;
    padding: 80px 20px;
    text-align: center;
}

.games-section h2 {
    font-size: 6.0rem;
    font-weight: 700;
  
    color: #ffffff;
}

.games-subtitle {
    font-size: 1rem;
    color: #ffffff;
    max-width: 550px;
    margin: 0 auto 50px auto;
    line-height: 1.5;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: start;
}

.game-tile {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-decoration: none;
    color: #333;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: fit-content;
}

.game-tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.game-tile.locked {
    pointer-events: none;
    cursor: not-allowed;
}

/* === NOWA, NIEZAWODNA SEKCJA DLA OBRAZKA === */
.game-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1; /* Wymusza kwadratowe proporcje (wysokość = szerokość) */
    overflow: hidden;    /* Ukrywa części obrazka, które nie mieszczą się w kwadracie */
}

.game-tile img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;    /* Dopasowuje obrazek, by wypełnił cały kontener */
    display: block;
}
/* ============================================= */

.locked .locked-overlay {
    content: '🔒';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.8);
}

.game-tile-content {
    display: flex;
    flex-direction: column;
    padding-bottom: 20px;
}

.game-dynamic-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.game-tile h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 20px 15px 15px 15px;
}

.game-active-timer-label {
    color: #000000;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.game-countdown {
    display: flex;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 0 15px;
    margin-bottom: 20px;
}

.time-box-small {
    background-color: #f0f0f0;
    border-radius: 5px;
    padding: 5px 8px;
    min-width: 55px;
}

.time-box-small span {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
}

.time-box-small small {
    font-size: 0.6rem;
    font-weight: 400;
    text-transform: uppercase;
}

/* --- STYLE PRZYCISKÓW I MODALA ZASAD GRY --- */
.game-buttons-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    padding: 0 20px;
}

.game-buttons-container .play-button,
.play-button {
    width: auto;
    margin: 0;
    flex: 1;
    display: block;
    padding: 15px;
    background-color: #ff0077;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.play-button:hover {
    background-color: #e6006d;
    transform: scale(1.03);
}

.rules-button {
    flex: 1;
    padding: 15px;
    background-color: #ffffff;
    color: #ff0077;
    border: 2px solid #ff0077;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.rules-button:hover {
    background-color: #fdf0f7;
    transform: scale(1.03);
}

.game-tile.finished {
    cursor: default;
}

.game-tile.finished:hover {
    transform: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.game-tile.finished .game-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.game-finished-message {
    font-size: 1.2rem;
    font-weight: 700;
    color: #888;
    padding: 20px;
    user-select: none;
}

/* --- Partnerzy i Stopka --- */
.partners-section {
    background-color: #ffffff;
    padding: 60px 20px;
    text-align: center;
    border-top: 1px solid #eee;
}

.partners-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #333;
}

.partners-logos-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
    place-items: center;
}

.partners-logos-container img {
    height: 45px;
    max-width: 150px;
    object-fit: contain;
}

.site-footer {
    background-color: #ffffff;
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid #eee;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 100px;
}
.footer-logo-container{
    margin-top: 47px;
}
.footer-nav a {
    font-size: 0.75rem;
    font-weight: 500;
    text-decoration: none;
    color: #555;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #ff0077;
}

.footer-copyright {
    font-size: 0.8rem;
    color: #999;
    margin-top: 7px;
}

/* --- STYLE DLA BANERA I MODALU COOKIE --- */

.cookie-banner-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fdfdfd;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.08);
    z-index: 1000;
    padding: 25px 30px;
    border-top: 1px solid #e9e9e9;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-banner-content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 20px;
}

.cookie-banner-text {
    text-align: left;
    flex: 1 1 auto;
}

.cookie-banner-text h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #333;
}

.cookie-banner-text p {
    font-size: 0.8rem;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

.cookie-customize-link {
    display: inline-block;
    color: #ff0077;
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: 10px;
}
.cookie-customize-link:hover {
    color: #e6006d;
}


.cookie-banner-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn-accept, .cookie-btn-reject {
    padding: 12px 25px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.cookie-btn-accept {
    background-color: #ff0077;
    color: white;
}
.cookie-btn-accept:hover {
    background-color: #e6006d;
}

.cookie-btn-reject {
    background-color: #e9ecef;
    color: #333;
    border-color: #dee2e6;
}
.cookie-btn-reject:hover {
    background-color: #d8dde1;
}

#cookie-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1001;
}

#cookie-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 550px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    z-index: 1002;
    text-align: left;
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    border-bottom: 1px solid #eee;
}

.cookie-modal-logo {
    height: 25px;
}

.cookie-modal-close-btn {
    background: none;
    border: none;
    font-size: 2rem;
    color: #aaa;
    cursor: pointer;
    line-height: 1;
}
.cookie-modal-close-btn:hover {
    color: #333;
}

.cookie-modal-body {
    padding: 25px;
}
.cookie-modal-body h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}
.cookie-modal-body p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 25px;
}
.cookie-modal-body a {
    color: #ff0077;
    text-decoration: underline;
}

.cookie-category {
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}
.cookie-category:last-child {
    border-bottom: none;
}
.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.cookie-modal-footer {
    padding: 20px 25px;
    background-color: #f9f9f9;
    border-top: 1px solid #eee;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

/* Style dla przełączników (toggles) */
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 28px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
}
.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
}
input:checked + .slider {
  background-color: #ff0077;
}
input:focus + .slider {
  box-shadow: 0 0 1px #ff0077;
}
input:checked + .slider:before {
  transform: translateX(22px);
}
.slider.round {
  border-radius: 34px;
}
.slider.round:before {
  border-radius: 50%;
}
.slider.disabled {
    background-color: #dcdcdc;
    cursor: not-allowed;
}
input:disabled + .slider:before {
    background-color: #f0f0f0;
}
/* --- Style dla weryfikacji wieku (Age Gate) --- */
#age-gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: none; 
}

#age-gate-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 500px;
    background-color: #ffffff;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.25);
    text-align: center;
    z-index: 2001;
    display: none; 
}

#age-gate-modal h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

#age-gate-modal p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
}

.age-gate-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.age-gate-btn-yes, .age-gate-btn-no {
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-grow: 1;
}

.age-gate-btn-yes {
    background-color: #ff0077;
    color: white;
}
.age-gate-btn-yes:hover {
    background-color: #e6006d;
    transform: translateY(-2px);
}

.age-gate-btn-no {
    background-color: #e9ecef;
    color: #333;
}
.age-gate-btn-no:hover {
    background-color: #d8dde1;
}
/* --- Modale --- */
#rules-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1500;
}

#rules-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 550px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    z-index: 1501;
    text-align: left;
}

.rules-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    border-bottom: 1px solid #eee;
}

.rules-modal-header h3 {
    margin: 0;
    font-size: 1.3rem;
    color: #333;
}

.rules-modal-close-btn {
    background: none;
    border: none;
    font-size: 2rem;
    color: #aaa;
    cursor: pointer;
    line-height: 1;
    padding: 0;
}
.rules-modal-close-btn:hover {
    color: #333;
}

.rules-modal-body {
    padding: 25px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
}

/* --- Media Queries --- */
@media (max-width: 992px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cookie-banner-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .cookie-banner-text {
        text-align: center;
    }
    .cookie-banner-actions {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {

    #background-video {
        transform: translate(-47%, -46%);
    }

    .hero {
        height: auto;
        padding: 60px 0;
        max-height: 450px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-content {
        max-width: 100%;
        max-height: 100%;
        overflow: hidden;
    }

    .hero-content h1 {
        font-size: clamp(1.8rem, 6vw, 2.6rem);
        line-height: 1.1;
        word-break: break-word;
        text-wrap: balance;
        margin: 0 auto;
    }

    .main-logo {
        max-width: 150px;
    }

    .time-box {
        min-width: 70px;
        padding: 8px 10px;
    }

    .time-box span {
        font-size: 1.8rem;
    }

    .time-box small {
        font-size: 0.6rem;
    }

    .logos-slide img {
        height: 25px;
        margin: 0 20px;
    }

    .games-section h2 { font-size: 3.2rem; }

    .partners-section h2 { font-size: 2rem; }
    .partners-logos-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    .partners-logos-container img {
        height: 35px;
    }
.section-icon {height:65px;}
    .footer-nav ul {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .hero {
        height: 90vh;
    }
    .games-grid {
        grid-template-columns: 1fr;
    }
    #cookie-modal {
        width: 90%;
    }
    .cookie-modal-body {
        padding: 20px 15px;
    }
    .cookie-modal-footer {
        padding: 15px;
        flex-direction: column;
        gap: 10px;
    }
    .section-icon {height:65px;}
    .cookie-modal-footer button {
        width: 100%;
    }
    .cookie-category-header {
        gap: 15px;
    }
    .cookie-category-header span {
        flex-basis: 80%;
    }
}
.section-icon {
    height: 85px; /* Możesz dostosować wysokość ikony */
    margin-bottom: 20px; /* Odstęp od napisu poniżej */
}
.instagram-banner {
    display: flex;
    align-items: center;
    background: #ff0077;
    color: #ffffff;
    padding: 15px 25px;
    border-radius: 12px;
    text-decoration: none;
    max-width: 450px;
    margin: 20px auto 40px auto;
    
    transition: transform 0.3s ease;
}

.instagram-banner:hover {
    transform: scale(1.02);
}

.instagram-logo {
    width: 40px;
    height: 40px;
    margin-right: 20px;
}

.instagram-text {
    text-align: left;
    flex-grow: 1; /* Sprawia, że tekst zajmuje dostępną przestrzeń */
}

.instagram-text p {
    margin: 0;
    font-weight: 600;
    font-size: 1rem;
}

.instagram-text span {
    font-size: 0.9rem;
    opacity: 0.7;
}

.live-indicator {
    display: flex;
    align-items: center;
    background-color: #e5007d;
    padding: 8px 15px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
}

.live-pulse {
    width: 8px;
    height: 8px;
    background-color: white;
    border-radius: 50%;
    margin-right: 8px;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
    100% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* Dostosowanie na mniejszych ekranach */
@media (max-width: 576px) {
    .instagram-text p {
        font-size: 0.9rem;
    }
    .instagram-text span {
        font-size: 0.8rem;
    }
    .instagram-banner {
        padding: 12px 15px;
    }
}
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1001;
}

.popup-box {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    z-index: 1002;
    max-width: 90%;
    width: 360px;
    text-align: left;
}

.popup-box h3 {
    margin-top: 0;
    color: #ff0077;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.popup-box p {
    margin: 10px 0;
    font-size: 0.95rem;
    color: #333;
}

.popup-box a {
    color: #ff0077;
    text-decoration: none;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #aaa;
    cursor: pointer;
}
.popup-close:hover {
    color: #ff0077;
}
/* --- Sekcja Harmonogramu --- */
.schedule-section {
    background-color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.schedule-section h2 {
    font-size: 3.5rem;
    font-weight: 900;
    color: #ff0077;
    margin-bottom: 50px;
}

.schedule-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.schedule-item h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ff0077;
    margin: 0 0 5px 0;
}

.schedule-item .schedule-details {
    font-size: 1.4rem;
    color: #333;
    font-weight: 400;
    margin: 0;
}

@media (max-width: 768px) {
    .schedule-section {
        padding: 60px 20px;
    }
    .schedule-section h2 {
        font-size: 2.5rem;
    }
    .schedule-item h3 {
        font-size: 1.6rem;
    }
    .schedule-item .schedule-details {
        font-size: 1.1rem;
    }
}
#rules-modal {
    max-height: 90vh;
    overflow-y: auto;
}

#rules-modal-content {
    max-height: 70vh;
    overflow-y: auto;
    padding-right: 10px; /* trochę miejsca na scrollbar */
}
.games-prize-title {
    color: #ffffff;
    font-size: 2.8rem;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 15px;
}

/* Dopasowanie wielkości czcionki na mniejszych ekranach */
@media (max-width: 768px) {
    .games-prize-title {
        font-size: 1.8rem;
        margin-top: 30px;
    }
}
#rules-modal-title {
    color: #ff0077;
}
/* --- Sekcja Informacyjna --- */
.info-section {
    background-color: #ffffff;
    padding: 80px 20px;
    text-align: center;
    border-top: 1px solid #f0f0f0;
}

.info-section h2 {
    color: #ff0077;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.info-section p {
    color: #000000;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.8;
    font-size: 1.1rem;
}

.info-section p a {
    color: #000000;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .info-section {
        padding: 60px 20px;
    }
    .info-section h2 {
        font-size: 2rem;
    }
    .info-section p {
        font-size: 1rem;
    }
}