/* --- RESET I PODSTAWY --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #ffffff;
}

html {
    scroll-behavior: smooth;
}

/* --- NAWIGACJA (Pływająca nad zdjęciem) --- */
.navbar {
    position: fixed;
    justify-content: center;
    top: 0;
    height: 70px;
    width: 100%;
    padding: 10px 20px;
    background: rgba(13, 43, 69, 0.1);
    backdrop-filter: blur(5px);
	z-index: 100;
    transition: background-color 1000ms;
}

.navbar.scroll {
    background: rgba(13, 43, 69, 0.95);
} 

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    cursor: pointer;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
}

.logo span {
    color: #00d2ff;
}

.logo:hover {
    transform: scale(1.03);
}

.navbar-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.navbar-links a {
    font-size: 18px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 700;
    position: relative;
    padding: 5px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.navbar-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 3px;
    background: #00d2ff;
    transition: width 0.3s ease;
    border-radius: 5px;
}

.navbar-links a:hover::after {
    width: 100%;
}

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;

    width: 50px;
    height: 50px;
    background-color: #00d2ff;
    border-radius: 10px;
    z-index: 2;
}

.line1, .line2, .line3 {
    width: 22px;
    height: 3px;
    background: white;
    border-radius: 999px;
    transition: all 500ms;
}

.line1.active {
    transform: translateY(9px) rotate(45deg);
}

.line2.active {
    opacity: 0;
}

.line3.active {
    transform: translateY(-9px) rotate(-45deg);
}

.bgMenu {
    position: fixed;
    
    top: 25px;
    right: 25px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #00d2ff;
    transform: scale(0);
    transition: transform 900ms ease;
    z-index: 1;
}
.bgMenu.active {
    transform: scale(200);
    font-size: 10px;
}

.menu-text {
    position: fixed;
    display: flex;
    flex-direction: column;
    top: 150px;
    gap: 30px;
    opacity: 0;
    transition: opacity 600ms;
    
}

.menu-text a {
    display: none;
    color: white;
    font-size: 50px;
    font-weight: 900;
}

.menu-text.active a {
    display: block;
}

.menu-text.active {
    opacity: 1;
    z-index: 2;
}
/* --- SEKCJA HERO ZE ZDJĘCIEM --- */
.hero {
    position: relative;
    /* Baza dla elementów wewnątrz */
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    justify-items: center;

    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;

    object-fit: cover;
    z-index: 1;
    pointer-events: none;
}

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

/* --- KONTENT HERO --- */
.hero-content {
    margin-top: 80px;
    margin-bottom: 50px;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 5;
    padding: 0 20px;
}

/* BADGE (Bardziej czytelny na zdjęciu) */
.hero-badge {
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.9);
    color: #0077b6;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 50px;
    border: 2px solid #00d2ff;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-badge:hover {
    transform: translateY(-3px);
    background-color: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 210, 255, 0.4);
}


.hero-content h1 {
    color: #ffffff;
    font-size: clamp(2.5rem, 7vw, 5rem);
    margin-top: 25px;
    line-height: 1.1;
    font-weight: 900;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-content h1 span {

    background: linear-gradient(to right, #00d2ff, #92fe9d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
}

/* OPIS */

.lokalizacja-adres {
    margin-top: 8px;
    color: #666;
    font-size: 15px;
    font-weight: 600;
}

.lokalizacja-opis {
    margin-bottom: 35px;
    background: white;
    padding: 25px 30px;
    border-radius: 18px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #00d2ff;
}

.lokalizacja-opis p {
    color: #555;
    line-height: 1.8;
    font-size: 1.2rem;
    font-weight: 500;
}

.hero-content p {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: #ffffff;
    margin-top: 20px;
    font-weight: 500;
    max-width: 700px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-button {
    margin-top: 40px;
    background-color: #0096c7;
    color: white;
    width: 220px;
    height: 60px;
    border-radius: 50px;
    border: none;
    font-weight: 800;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 150, 199, 0.4);
    transition: all 0.3s ease;
    animation: fadeUp 1s 0.5s both;
}

.hero-button:hover {
    background-color: #00b4d8;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 180, 216, 0.5);
}

/* PILLS (Atuty na białym tle) */
.pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 50px;
}

.hero-pill {
    cursor: pointer;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid #ffffff;
    color: #0d2b45;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 100px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-pill:hover {
    background: #ffffff;
    transform: translateY(-5px) scale(1.05);
    color: #0077b6;
}

a {
    text-decoration: none;
}

/* --- FALE (Białe na dole zdjęcia) --- */
.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 100px;
    overflow: hidden;
    z-index: 2;
}

.wave {
    position: absolute;
    width: 200%;
    height: 100%;
    bottom: 0;
}

.wave1 {
    animation: waveMove1 12s linear infinite;
    fill: #f8f9fa;
}

.wave2 {
    animation: waveMove2 18s linear infinite;
    opacity: 0.6;
    fill: #f8f9fa;
}

/* --- ANIMACJE --- */
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes waveMove1 {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes waveMove2 {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-30%);
    }
}

@keyframes badge-pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(0, 210, 255, 0.4);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(0, 210, 255, 0);
    }
}

@keyframes shine {

    0%,
    60% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(200%);
    }
}

/* --- SEKCJE OGÓLNE --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-kontakt {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    position: relative;
    overflow: hidden;
    display: inline-block;
    background: linear-gradient(135deg, #0096c7, #00d2ff);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.section-badge::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    animation: shine 3s ease-in-out infinite;
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #0d2b45;
    font-weight: 900;
    margin-bottom: 15px;
}

.section-header h2 span {
    background: linear-gradient(to right, #0096c7, #00d2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* --- SEKCJA DOMKI --- */
.domki-section {
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
}

.lokalizacja-group {
    margin-bottom: 80px;
}

.lokalizacja-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding: 20px 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.lokalizacja-header h3 {
    font-size: 1.8rem;
    color: #0d2b45;
    font-weight: 800;
}

.distance-badge {
    background: linear-gradient(135deg, #00d2ff, #92fe9d);
    color: #0d2b45;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    animation: badge-pulse 2.5s ease-in-out infinite;

}

.domki-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 30px;
}

.domek-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.domek-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 150, 199, 0.2);
}

.domek-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.domek-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.domek-card:hover .domek-image img {
    transform: scale(1.1);
}

.domek-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.domek-card:hover .domek-overlay {
    opacity: 1;
}

.view-button {
    background: white;
    color: #0096c7;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-button:hover {
    background: #0096c7;
    color: white;
    transform: scale(1.05);
}

.domek-content {
    padding: 25px;
}

.domek-content h4 {
    font-size: 1.5rem;
    color: #0d2b45;
    font-weight: 800;
    margin-bottom: 10px;
}

.domek-capacity {
    color: #0096c7;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 20px;
}

.domek-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 24px;
    margin-top: 25px;
}

.domek-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;

    color: #444;
    font-size: 0.90rem;
    font-weight: 600;
    line-height: 1.5;
}

.domek-features i {
    color: #0096c7;
    font-size: 1rem;
    margin-top: 2px;
    min-width: 18px;
}

/* --- SEKCJA DLACZEGO MY --- */
.why-section {
    background: white;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.why-card {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.4s ease;
}

.why-card:hover {
    border-color: #00d2ff;
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 210, 255, 0.15);
}

.why-icon {
    font-size: 2.2rem;
    margin: 0 auto 20px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #ffffff;
    background: linear-gradient(135deg, #0096c7, #00d2ff);
    box-shadow: 0 8px 20px rgba(0, 150, 199, 0.3);

}

.sun::before {
    content: "\f185";

}

.house::before {
    content: "\f015";
}

.kitchen::before {
    content: "\f0f4";
}

.family::before {
    content: "\f500";
}

.car::before {
    content: "\f1b9";
}

.attraction::before {
    content: "\f5a0";
}

.why-card h3 {
    font-size: 1.4rem;
    color: #0d2b45;
    font-weight: 800;
    margin-bottom: 15px;
}

.why-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* --- SEKCJA GALERIA --- */
.galeria-section {
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.galeria-item {
    position: relative;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.galeria-large {
    grid-column: span 2;
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.galeria-item:hover img {
    transform: scale(1.1);
}

.galeria-item:hover {
    box-shadow: 0 15px 40px rgba(0, 150, 199, 0.3);
}

/* --- SEKCJA KONTAKT --- */
.kontakt-section {
    background: linear-gradient(135deg, #0d2b45, #005792);
    color: white;
}

.kontakt-wrapper {

    align-items: start;
}

.kontakt-info .section-badge {
    background: rgba(255, 255, 255, 0.2);
}

.kontakt-info h2 {
    color: white;
    margin-bottom: 20px;
}

.kontakt-info h2 span {
    background: linear-gradient(to right, #00d2ff, #92fe9d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.kontakt-info p {

    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.kontakt-details {
    display: flex;
    gap: 10px;
}

.kontakt-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.kontakt-icon {
    font-size: 2rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 15px;
}

.kontakt-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.kontakt-item p {
    opacity: 0.8;
    margin: 0;
}

.map {
    display: flex;
    gap: 50px;
    width: 85%;
    margin: 50px auto 0 auto;

}

.map div {
    width: 85%;
}

.map div h3 {
    margin-bottom: 15px;
}

.map iframe {
    width: 100%;
    height: 400px;

    border: none;
    border-radius: 20px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);

    filter: grayscale(20%) contrast(1.1);

    transition: 0.3s;
}

.map iframe:hover {
    transform: scale(1.02);
    filter: grayscale(0%);
}

/* --- GALERIA --- */

.img-gallery {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 900;
    background: rgba(5, 14, 28, .95);
    color: white;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
    transition: opacity .3s ease;
    backdrop-filter: blur(6px);
}

.img-gallery.active {
    display: flex;
}


.btn-close {
    position: absolute;
    top: 1rem;
    right: 1.4rem;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 2.2rem;
    cursor: pointer;
    opacity: .65;
    transition: opacity .2s ease, transform .2s ease;
    line-height: 1;
}

.btn-close:hover {
    opacity: 1;
    transform: scale(1.1);
}


.left,
.right {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    opacity: .6;
    transition: opacity .2s ease, transform .2s ease;
    padding: .5rem 1rem;
}

.left:hover,
.right:hover {
    opacity: 1;
    transform: scale(1.15);
}


.left {
    position: absolute;
    left: 1rem;
}

.right {
    position: absolute;
    right: 1rem;
}

.gallery-content {
    border-radius: 100px;
    width: 1100px;
    height: 700px;
    object-fit: cover;
    display: block;
}



.element {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    padding: .4rem .9rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    color: #fff;
    font-size: 0.95rem;
    font-family: system-ui, sans-serif;
    letter-spacing: 0.5px;
    backdrop-filter: blur(6px);
    opacity: 0.75;
    transition: all .2s ease;
}

.element:hover {
    opacity: 1;
    transform: translateX(-50%) scale(1.05);
}

/* --- FOOTER --- */
.footer {
    background: #0d2b45;
    color: white;
    padding: 60px 0 30px;
}

.container-footer {
    justify-content: center;
    justify-self: center;
}

.footer-content {
    display: flex;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 100px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.footer-logo span {
    color: #00d2ff;
}


.footer-col p {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
    opacity: 0.8;
}

.footer-col ul li a {
    display: inline-block;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: #00d2ff;
    transform: scale(1.1);

}

.col-fb {
    justify-content: center;
    justify-items: center;
    justify-self: center;
}

.fb {

    transform: scale(2);
}


.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* --- Regulamin.html --- */

.regulamin-section {
    padding-top: 120px;
    padding-bottom: 80px;
    background: linear-gradient(to bottom, #f1f1f1, #ffffff);
}

.regulamin-box {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

.regulamin-box {
    background: #ffffff;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.regulamin-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #222;
}


.regulamin-box h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #0096c7, #00d2ff);
    border-radius: 2px;
}


.regulamin-box p {
    margin-top: 8px;
    color: #666;
    line-height: 1.8;
    font-size: 15px;
}


.regulamin-box ul {
    margin-top: 15px;
    padding-left: 0;
    list-style: none;
}

.regulamin-box li {
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    color: #555;
    line-height: 1.6;
}


.regulamin-box li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #1e5f8a;
    font-size: 14px;
}



/* --- RESPONSYWNOŚĆ --- */

@media (max-width: 1200px) {
    .kontakt-details {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .footer-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .navbar-links {
        display: none;
    }

	.logo {
        font-size: 23px;
    }

    .burger-menu {
        display: flex;
    }

    .hero {
        height: 700px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .pills {
        flex-direction: column;
        width: 100%;
    }

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

    .domki-grid {
        grid-template-columns: 1fr;
    }

    .lokalizacja-opis p {
        font-size: 1rem;
    }

    .lokalizacja-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .galeria-large {
        grid-column: span 1;
    }

    .galeria-grid {
        grid-template-columns: 1fr;
    }

    .gallery-content {
        width: 90vw;
        height: auto;
        max-height: 70vh;
        border-radius: 20px;
    }

    .btn-close {
        font-size: 2.5rem;
        top: 0.7rem;
        right: 1rem;
    }

    .left,
    .right {
        font-size: 1.6rem;
        padding: .4rem .8rem;
    }

    .left {
        left: .5rem;
    }

    .right {
        right: .5rem;
    }

    .element {
        bottom: 1rem;
        font-size: .8rem;
        padding: .3rem .7rem;
    }

    .img-gallery {
        padding: 1rem .5rem;
    }

    .kontakt-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .map {
        flex-direction: column;
    }

    .map div {
        width: auto;
    }

    .kontakt-details {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-content {
        display: grid;
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .regulamin-section {
        padding-top: 90px;
        padding-bottom: 50px;
    }

    .regulamin-box {
        padding: 18px;
        border-radius: 14px;
    }

    .regulamin-text {
        font-size: 0.9rem;
        line-height: 1.7;
    }
}