html,
body {
    overflow-x: hidden;
}

body {
    background-color: #fff;
}

.navbar {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    padding: 15px 20px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 24px;
    font-weight: bold;
    color: #000000 !important;
    text-transform: uppercase;
}

.navbar-nav .nav-link {
    text-transform: uppercase;
    color: #000000 !important;
    margin: 0 15px;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #007bff !important;
    text-decoration: none;
}

.btn-primary {
    background-color: #007bff;
    border: none;
    padding: 8px 15px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 20px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
}

@media (max-width: 768px) {
    .navbar-nav {
        text-align: center;
    }

    .navbar-nav .nav-link {
        margin: 5px 0;
    }

    .btn-primary {
        display: block;
        margin: 10px auto;
        width: 80%;
        text-align: center;
    }
}

.hero-section {
    position: relative;
    background: linear-gradient(145deg, #ffffff, #f3f3f3);
    padding: 60px 0;
    text-align: left;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: bold;
    color: #333;
    line-height: 1.3;
}

.hero-title .highlight {
    color: #007bff;
}

.hero-description {
    font-size: 1.2rem;
    color: #555;
    margin: 20px 0;
}

.hero-btn {
    background-color: #007bff;
    color: #fff;
    padding: 12px 24px;
    font-size: 1.1rem;
    border-radius: 30px;
    transition: background-color 0.3s, transform 0.2s;
    display: inline-block;
    text-decoration: none;
}

.hero-btn:hover {
    background-color: #0056b3;
    color: #fff;
    transform: scale(1.05);
}

.hero-gallery {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.carousel {
    max-width: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.carousel-inner img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
}

.carousel-fade .carousel-item {
    transition: opacity 0.5s ease-in-out;
}

.carousel-control-prev,
.carousel-control-next {
    margin: 10px;
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
    background-size: 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

@media (max-width: 992px) {
    .hero-gallery {
        margin-top: 30px;
        order: 2;
    }
}

.overlay-bottom-right {
    position: absolute;
    bottom: 20px;
    right: 30px;
    background: rgba(255, 255, 255, 0.8);
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .hero-section {
        text-align: center;
        padding: 60px 20px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-btn {
        font-size: 1rem;
        padding: 10px 20px;
    }

    .overlay-bottom-right {
        position: static;
        margin-top: 20px;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-text p {
        font-size: 0.9rem;
    }

    .hero-gallery {
        max-width: 100%;
    }
}

.section1 {
    height: 90vh;
}

.scroll-down-arrow {
    font-size: 30px;
    position: absolute;
    bottom: 20px;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.5s ease, transform 0.5s ease;
    animation: changeColorAndMove 1s infinite alternate;
}

@keyframes changeColorAndMove {
    from {
        color: rgb(0, 0, 0);
        transform: translateY(0);
    }

    to {
        color: rgb(255, 255, 255);
        transform: translateY(5px);
    }
}

.scroll-down-arrow:hover {
    color: #e0e0e0;
}

.icon-bottom-right {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.icon {
    width: 50px;
    height: 50px;
    animation: breathe 2s infinite;
}

@keyframes breathe {
    0% {
        transform: scale(1);
        filter: brightness(1);
    }

    50% {
        transform: scale(1.2);
        filter: brightness(0.8);
    }

    100% {
        transform: scale(1);
        filter: brightness(1);
    }
}

.section2 {
    background-color: #000;
    padding-top: 20px;
    padding-bottom: 40px;
    text-align: center;
    color: #f1f1f1;
}

.image-container {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay-center .main-header {
    font-family: 'Bevan', sans-serif;
    font-size: 60px;
    color: rgb(0, 0, 0);
    text-align: center;
    text-transform: uppercase;
    padding: 10px;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0 auto;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
}

.overlay-bottom-right {
    position: absolute;
    right: 20px;
    bottom: 20px;
    font-size: 14px;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px;
    padding-bottom: 0px;
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
    z-index: 3;
}

.section2 h2 {
    padding-bottom: 15px;
}

.overlay-center h2 {
    font-family: "Roboto", sans-serif;
    font-size: 40px;
    font-weight: bold;
}

.overlay-custom h2 {
    font-family: "Roboto", sans-serif;
    font-size: 50px;
    font-weight: bold;
}

.card {
    height: 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: transform 0.3s;
}

.card:hover {
    transform: scale(1.05);
}

.card-img-top {
    height: 500px;
    object-fit: cover;
}

.carousel-item img {
    height: 500px;
    object-fit: cover;
}

.section5 {
    background-color: #f8f9fa;
    padding: 40px 0;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.section5 h2 {
    font-family: "Roboto", sans-serif;
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.form-control,
.form-select {
    border: 1px solid #ddd;
    background-color: #fff;
    color: #333;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-control:focus,
.form-select:focus {
    border-color: #007bff;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.5);
    outline: none;
}

.btn-outline-light {
    background-color: #007bff;
    color: #fff;
    border: none;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-outline-light:hover {
    background-color: #004ea1;
    color: #fff;
    transform: scale(1.02);
}

.contact-form-wrapper {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.contact-image-container {
    display: flex;
    align-items: stretch;
    height: 100%;
    border-radius: 10px;
    border: 1px solid #ddd;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.contact-image-container img {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: cover;
}

.contact-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    color: #333;
    text-align: center;
    font-size: 1.2rem;
}

.contact-image-overlay h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.contact-image-overlay p {
    margin: 8px 0;
    font-size: 1.1rem;
    color: #555;
}

.contact-image-overlay .separator {
    width: 100%;
    height: 1px;
    background-color: #ddd;
    margin: 15px 0;
}

.contact-image-overlay a {
    color: #007bff;
    font-weight: bold;
    text-decoration: none;
}

.contact-image-overlay a:hover {
    color: #0056b3;
}

.highlighted-phone {
    font-size: 1.3rem;
    font-weight: bold;
    color: #007bff;
}

.contact-image-overlay i {
    margin-right: 8px;
    color: #007bff;
}

.contact-logo {
    max-width: 160px;
    margin-bottom: 15px;
}

a {
    color: #cecece;
    text-decoration: none;
}

a:hover {
    color: #f8f9fa;
}

.hidden {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

@media (max-width: 767px) {
    .overlay-custom {
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
    }

    .contact-form-wrapper,
    .image-container {
        width: 100%;
    }

    .contact-form-wrapper {
        margin-bottom: 20px;
    }

    .contact-info-wrapper p {
        font-size: 0.9rem;
    }

    .contact-data {
        padding: 15px;
        font-size: 0.9rem;
    }

    .contact-data img.contact-logo {
        max-width: 80px;
    }

    .contact-data h2 {
        font-size: 1.2rem;
    }

    .contact-data p {
        font-size: 0.85rem;
    }
}

.form-check-right {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 40px;
}

.form-check-input {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    width: 20px;
    height: 20px;
    background-color: #d0d0d0;
}

.form-check-label {
    margin: 0;
    color: #000;
    font-size: 0.9rem;
    text-align: right;
}

.alert {
    display: none;
    padding: 12px;
    margin-top: 15px;
    border-radius: 5px;
    text-align: center;
    font-size: 1rem;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.hidden-left {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.hidden-right {
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.workflow-section {
    background-color: #f9f9f9;
}

.workflow-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.workflow-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.2);
}

.workflow-icon i {
    color: #007bff;
    transition: color 0.3s ease;
    margin-top: 15px;
}

.workflow-card:hover .workflow-icon i {
    color: #0056b3;
}

.workflow-card .workflow-step-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.workflow-section h2 {
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.workflow-card p {
    font-size: 14px;
    color: #666;
}

#why-choose-us {
    background-color: #e6e6e6;
    padding: 20px;
}

.tile {
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(145deg, #ffffff, #f3f3f3);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1), -5px -5px 15px rgba(255, 255, 255, 0.5);
    padding: 30px;
    border-radius: 15px;
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    text-align: left;
}

.feature-box p {
    margin: 0;
    color: #666666;
}

.feature-box .feature-subtitle {
    margin: 0;
    font-size: 1.2rem;
    font-weight: bold;
    color: #333333;
}

.feature-box i {
    font-size: 2.5rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .feature-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .feature-box i {
        font-size: 2rem;
    }

    #why-choose-us .tile .row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    #why-choose-us .col-md-7,
    #why-choose-us .col-md-5 {
        max-width: 100%;
        width: 100%;
    }

    #why-choose-us .col-md-5 {
        margin-top: 30px;
    }
}

#faq {
    background-color: #e6e6e6;
    padding: 80px 20px;
    border-radius: 0px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

#faq .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

#faq h2 {
    position: relative;
    color: #333;
    text-align: center;
    font-weight: 700;
}

#faq h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    margin: 10px auto 0;
    border-radius: 5px;
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
    background-color: #ffffff;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

.accordion-item:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
}

.accordion-button {
    font-size: 1.25rem;
    font-weight: bold;
    background-color: #ffffff;
    color: #333333;
    padding: 20px 25px;
    border: none;
    border-bottom: 1px solid #eeeeee;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    color: #007bff;
    background-color: #f5f5f5;
    box-shadow: 0 5px 10px rgba(0, 123, 255, 0.2);
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button::after {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

.accordion-body {
    font-size: 1rem;
    color: #555555;
    line-height: 1.7;
    padding: 20px 25px;
    background-color: #fafafa;
    border-top: 1px solid #eeeeee;
}

@media (max-width: 768px) {
    #faq {
        padding: 60px 10px;
    }

    #faq h2 {
        font-size: 2rem;
    }

    .accordion-button {
        font-size: 1.1rem;
    }

    .accordion-body {
        font-size: 0.95rem;
    }
}

.gallery-section {
    background-color: #f9f9f9;
    padding: 50px 0;
}

.gallery-section h2 {
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-auto-rows: 200px;
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 100%;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: opacity 0.45s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

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

.gallery-item:hover {
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

.gallery-grid.is-switching .gallery-item img {
    opacity: 0;
    transform: scale(0.98);
}

.gallery-bottom-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-top: 28px;
}

.gallery-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.gallery-dot {
    width: 10px;
    height: 10px;
    border: none;
    border-radius: 50%;
    background: #cfcfcf;
    padding: 0;
    transition: all 0.25s ease;
}

.gallery-dot.active {
    background: #007bff;
    transform: scale(1.25);
}

.gallery-arrow {
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.gallery-arrow:hover {
    background: #007bff;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 123, 255, 0.25);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 140px;
        gap: 10px;
    }

    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 2;
    }

    .gallery-bottom-nav {
        gap: 14px;
        margin-top: 22px;
    }

    .gallery-arrow {
        width: 42px;
        height: 42px;
    }

    .gallery-dots {
        gap: 8px;
    }

    .gallery-dot {
        width: 9px;
        height: 9px;
    }
}

@media (min-width: 1200px) and (max-width: 1400px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 180px;
    }
}

.free-info-bar {
    background-color: #000;
    font-size: 35px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    padding: 30px 15px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .free-info-bar {
        font-size: 24px;
        padding: 20px 15px;
    }
}

#our-services {
    background-color: #f9f9f9;
}

#our-services h2 {
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.service-card {
    background: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

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

.service-icon i {
    transition: transform 0.3s ease, color 0.3s ease;
    font-size: 3rem;
}

.service-card:hover .service-icon i {
    transform: scale(1.2);
}

.service-card h3 {
    color: #333333;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.service-card p {
    font-size: 1rem;
    color: #666666;
    text-align: center;
}

.footer {
    background-color: #ffffff;
    color: #333;
    border-top: 1px solid #ddd;
    padding: 40px 0;
}

.footer .footer-heading {
    color: #007bff;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    text-align: center;
}

.footer p,
.footer a {
    font-size: 1rem;
    color: #555;
    margin: 5px 0;
    text-align: center;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.footer-nav ul.text-end {
    text-align: right;
}

.footer-nav ul.text-start {
    text-align: left;
}

.footer .nav-link {
    text-decoration: none;
    transition: color 0.3s ease;
    color: #555;
    display: block;
}

.footer .nav-link:hover {
    color: #007bff;
    text-decoration: underline;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.footer-nav ul.text-end {
    text-align: right;
}

.footer-nav ul.text-start {
    text-align: left;
}

@media (max-width: 768px) {
    .footer-nav {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .footer-nav ul {
        text-align: center;
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .footer .col-md-4:nth-child(2),
    .footer .col-md-4:nth-child(3) {
        margin-top: 20px !important;
    }

    .footer .col-md-4 {
        padding: 0 !important;
        margin: 0 !important;
        text-align: center;
    }

    .footer .col-md-4:nth-child(2) {
        order: 3;
    }

}

.services-row,
.workflow-row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.service-card,
.workflow-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.free-info-bar {
    background-color: #000;
    font-size: 28px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    padding: 25px 15px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .free-info-bar {
        font-size: 20px;
        padding: 20px 15px;
    }
}

.animate,
.animate-left,
.animate-right,
.animate-up,
.animate-down {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate.visible,
.animate-left.visible,
.animate-right.visible,
.animate-up.visible,
.animate-down.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate.played,
.animate-left.played,
.animate-right.played,
.animate-up.played,
.animate-down.played {
    opacity: 1;
    transform: none;
}

.animate-left {
    transform: translateX(-30px);
}

.animate-left.visible {
    transform: translateX(0);
}

.animate-right {
    transform: translateX(30px);
}

.animate-right.visible {
    transform: translateX(0);
}

.animate-up {
    transform: translateY(-30px);
}

.animate-up.visible {
    transform: translateY(0);
}

.animate-down {
    transform: translateY(30px);
}

.animate-down.visible {
    transform: translateY(0);
}

.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    color: #ffffff;
    padding: 15px 0;
    z-index: 1000;
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.cookie-consent-banner.show {
    display: block;
    opacity: 1;
}

.cookie-consent-banner .cookie-message a {
    color: #007bff;
    text-decoration: underline;
}

.cookie-consent-banner .cookie-message a:hover {
    color: #0056b3;
}

.cookie-consent-banner .btn-primary {
    background-color: #007bff;
    border: none;
    padding: 8px 20px;
    font-size: 1rem;
    border-radius: 25px;
    transition: background-color 0.3s ease;
}

.cookie-consent-banner .btn-primary:hover {
    background-color: #0056b3;
}

/* Regulamin Modal */
.regulations-modal .modal-content {
    border: none;
    border-radius: 18px;
    overflow: hidden;
}

.regulations-modal .modal-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.regulations-modal .modal-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.regulations-modal .modal-body {
    background-color: #fafafa;
}

.regulations-content {
    font-family: 'Roboto', sans-serif;
    color: #111;
}

.regulations-content .policy-tile {
    background-color: #f2f2f2;
    color: #111;
    padding: 20px;
    margin: 20px 0;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: background-color 0.3s, transform 0.2s;
}

.regulations-content .policy-tile h2 {
    color: #333;
    margin-bottom: 15px;
}

.regulations-content .policy-tile:hover {
    background-color: #e7e7e7;
    transform: scale(1.01);
}

.regulations-content a {
    color: #0077cc;
    text-decoration: underline;
}

.regulations-content a:hover {
    color: #005fa3;
}

.regulations-modal .back-arrow,
.regulations-modal .return-button {
    display: none !important;
}

.regulations-loading .spinner-border {
    width: 3rem;
    height: 3rem;
}