@font-face {
    font-family: 'GreedNarrow-Heavy';
    src: url('assets/fonts/GreedNarrow-Heavy.woff2') format('woff2'),
         url('assets/fonts/GreedNarrow-Heavy.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'mnkybananagrotesk';
    src: url('assets/fonts/mnkybananagrotesk-regular.woff2') format('woff2'),
         url('assets/fonts/mnkybananagrotesk-regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'mnkybananagrotesk';
    src: url('assets/fonts/mnkybananagrotesk-bold.woff2') format('woff2'),
         url('assets/fonts/mnkybananagrotesk-bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary-color: #F5F3E2;
    --secondary-color: #ffffff;
    --dark-color: #232220;
    --yellow-color: #FDEB0F;
    --font-heading: 'GreedNarrow-Heavy', sans-serif;
    --font-body: 'mnkybananagrotesk', sans-serif;
}

html {
    overflow-x: hidden;
}

body {    overflow-x: hidden;

    font-family: var(--font-body);
    font-weight: 400;
}

.header {
    position: absolute;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
}

.logo-text-container {
    display: flex;
    align-items: center;
}

.logo-main {
    height: 30px;
    width: auto;
}

.logo-text {
    height: 22px;
    width: auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.hamburger-menu {
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
}

.hamburger-icon {
    width: 100%;
    height: 3px;
    background-color: var(--secondary-color);
    position: absolute;
    transition: all 0.3s ease;
}

.hamburger-icon:nth-child(1) {
    top: 0;
}

.hamburger-icon:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger-icon:nth-child(3) {
    bottom: 0;
}

.menu-open .hamburger-icon:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.menu-open .hamburger-icon:nth-child(2) {
    opacity: 0;
}

.menu-open .hamburger-icon:nth-child(3) {
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}

.side-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--dark-color);
    z-index: 1100;
    padding: 60px 30px;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.menu-open .side-menu {
    right: 0;
}

.close-menu-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    font-size: 2.5rem;
    color: var(--secondary-color);
    cursor: pointer;
    line-height: 1;
    padding: 0;
}

.close-menu-btn:hover {
    color: var(--primary-color);
}

.side-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-open .side-menu-overlay {
    opacity: 1;
    visibility: visible;
}

.side-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 40px;
}

.side-menu ul li {
    margin-bottom: 20px;
}

.side-menu ul li a {
    color: var(--secondary-color);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    position: relative;
    padding-bottom: 5px;
    display: inline-block;
    transition: all 0.3s ease;
}

.side-menu ul li a:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.side-menu ul li a:hover {
    color: var(--primary-color);
}

.side-menu ul li a:hover:after {
    width: 100%;
}

.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-carousel {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.glide__track,
.glide__slides {
    height: 100%;
}

.hero-slide {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    width: 100%;
}

.hero-content {
    position: relative;
    z-index: 100;
    width: 100%;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 0.8;
    font-weight: 700;
    color: var(--secondary-color);
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: -2px;
}

.hero-content h1 span {
    color: var(--yellow-color);
    display: block;
}

.hero-content p {
    font-size: 1rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.btn-primary {
    font-family: var(--font-body);
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 30px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--dark-color);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glide {
    position: absolute;
    width: 100%;
    height: 100%;
}

.glide__slide {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.fw-bold, strong, b {
    font-weight: 700;
}

.why-go-beyond {
    background-color: var(--dark-color);
    color: var(--primary-color);
    position: relative;
    padding-top: 6rem;
    padding-bottom: 6rem;
    overflow: hidden;
}

.why-go-beyond .container {
    position: relative;
    z-index: 2;
}

.fist-image-container {
    position: absolute;
    top: 30%;
    right: 0%;
    z-index: 1;
    pointer-events: none;
}

.fist-icon {
    display: block;
    max-height: 60vh;
    width: auto;
}

.why-go-beyond .section-title {
    font-family: var(--font-heading);
    color: var(--yellow-color);
    font-size: 1.8rem;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 3rem;
}

.why-go-beyond .text-content p {
    font-size: 1rem; 
    line-height: 1;
    margin-bottom: 1.25rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.why-go-beyond .text-content .highlight-bold {
    font-weight: 900;
    color: var(--yellow-color);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.core-design {
    background-color: var(--yellow-color);
    color: var(--dark-color);
    padding-top: 6rem;
    padding-bottom: 6rem;
    line-height: 1.2;
}

.section-title-large {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
    text-transform: uppercase;
    line-height: 1.2;
}

.highlight-text {
    background-color: #F5F3E2;
    padding: 0.1em 0.3em;
    display: inline-block;
    font-weight: normal;
    margin: 0 0.2em;
}

/* Style for black background highlight */
.inverted-highlight {
    background-color: var(--dark-color); /* Black background */
    color: var(--secondary-color); /* White text */
    font-family: var(--font-heading); /* Use heading font */
    padding: 0.05em 0.2em;
    display: inline-block; /* Ensures background covers only text */
    box-decoration-break: clone; /* Handle line breaks nicely */
    -webkit-box-decoration-break: clone; /* Safari support */
    line-height: 1.1;
}

.core-design .intro-text {
    font-family: var(--font-body); /* Or var(--font-heading) if preferred */
    font-size: 1.1rem; /* Standardized base size */
    font-weight: 700; /* Bold */
    line-height: 1.4;
}

.core-icon {
    /* Adjust container - remove fixed height */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px; /* Optional: Set a width for the icon container if needed */

}

.core-card {
    background-color: var(--primary-color); /* Yellow background */
    border: none;
    border-radius: 15px; /* Rounded corners */
    padding: 1.5rem;
    border:3px solid var(--dark-color);

    box-shadow: 0 4px 15px rgba(0,0,0,0.1); /* Optional subtle shadow */
}

.core-card .card-title {
    font-family: var(--font-heading); /* Use GreedNarrow-Heavy */
    font-weight: 700; /* Ensure bold */
    color: var(--dark-color);
    font-size: 1.25rem;
    text-transform: uppercase;
}

.core-card .card-text {
    font-size: 0.95rem;
    color: var(--dark-color);
    line-height: 1.6;
}

.core-card .text-showcase {
    font-size: 1.2rem;
  text-transform: uppercase;
}

/* Inverted Core Card Style */
.core-card-inverted {
    /* oak color */
    border:3px solid var(--primary-color);
    background-color: var(--dark-color); /* Black background */
}

.core-card-inverted .card-title,
.core-card-inverted .card-text {
    color: var(--primary-color); /* Oat text color */
}

/* New section for Why Playtos */
.why-playtos-section {
    background-color: var(--primary-color);
    color: var(--dark-color);
    padding-top: 6rem; /* Increased padding */
    padding-bottom: 6rem; /* Increased padding */
}

.why-playtos-section .section-title {
    font-family: var(--font-heading);
    font-size: 2.2rem; /* Match Why Go Beyond style initially */
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1.5rem; /* Adjusted margin */
}

.why-playtos-section p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.why-playtos-section .lead {
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

/* Video Placeholder Style */
.video-placeholder {
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

/* Optional: Add styles for an embedded iframe later */
.video-placeholder iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* --- Responsive Styles (Mobile First) --- */

/* Generic Page Hero Styles */
.page-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 100vh; /* Updated height */
    display: flex;
    align-items: center;
    color: var(--secondary-color);
    padding-top: 100px; /* Space for header */
    padding-bottom: 60px;
    z-index: 2; /* Content above overlay */
}

.page-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black overlay */
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 2; /* Content above overlay */
}


.page-hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem; /* Base size */
    font-weight: 700;
    line-height: 0.8; /* Reduced line height */
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.page-hero-title .highlight {
    color: var(--yellow-color);
    display: block;
}

.page-hero-subtitle {
    font-size: 1.2rem; /* Base size */
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.btn-contact-hero {
    background-color: var(--yellow-color);
    color: var(--dark-color);
    border: 2px solid var(--yellow-color);
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 20px; /* Adjusted padding */
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-contact-hero:hover {
    background-color: transparent;
    color: var(--yellow-color);
    border-color: var(--yellow-color);
}

/* Tablet styles (>= 768px) */
@media (min-width: 768px) {
    .side-menu {
        width: 320px; /* Back to fixed width */
        right: -320px; /* Back to fixed width transition */
        padding: 80px 30px;
    }
    
    .logo-text {
        height: 25px;
    }

    .hero-content h1 {
        font-size: 5rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .btn-primary {
        padding: 15px 40px;
        font-size: 1rem;
    }

    .why-go-beyond .section-title {
        font-size: 2.2rem; /* Standardized tablet size */
    }

    .why-go-beyond .text-content p {
        font-size: 1.1rem;
    }
    
    .why-go-beyond .text-content .highlight-bold {
        font-size: 1.2rem;
    }

    .core-design .intro-text {
        font-size: 1.2rem; /* Standardized tablet size */
    }

    .section-title-large {
        font-size: 2.2rem; /* Standardized tablet size */
    }

    .core-card {
        padding: 2rem;
    }
}

/* Desktop styles (>= 992px) */
@media (min-width: 992px) {
    .logo-text {
        height: 30px;
    }

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

    .hero-content p {
        font-size: 1.25rem;
    }

    .why-go-beyond .section-title {
        font-size: 2.5rem; /* Standardized desktop size (max) */
    }

    .why-go-beyond .text-content p {
        font-size: 1.15rem;
    }
    
    .why-go-beyond .text-content .highlight-bold {
        font-size: 1.3rem;
    }

    .core-design .intro-text {
        font-size: 1.3rem; /* Standardized desktop size */
    }
    
    .section-title-large {
        font-size: 2.5rem; /* Standardized desktop size (max) */
    }
    
    .core-card .card-title {
        font-size: 1.4rem;
    }

    .core-card .card-text {
        font-size: 1rem;
    }

    .page-hero-title {
        font-size: 5rem; /* Desktop size */
    }

    .page-hero-subtitle {
        font-size: 1.5rem; /* Desktop size */
    }
}

/* Large Desktop styles (>= 1200px) */
@media (min-width: 1200px) {
    .hero-content h1 {
        font-size: 7rem;
    }

    .fist-image-container {
    }
    
    .why-go-beyond .section-title {
        font-size: 2.5rem; /* Keep at max */
    }

    .core-design .intro-text {
        font-size: 1.4rem; /* Standardized large desktop size (max) */
    }

    .section-title-large {
        font-size: 2.5rem; /* Keep at max */
    }

    .page-hero-title {
        font-size: 6rem; /* Large Desktop size */
    }
}

/* Updated Footer Styles */
.footer {
    background-color: #1d1e20 !important;
    position: relative;
    padding-top: 2.5rem !important;
    padding-bottom: 2rem !important;
    text-align: center;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background-color: #fedc00;
}

.footer-copyright {
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.footer-contact-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.footer-contact-item {
    margin: 0 1.5rem;
}

.footer-contact {
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.footer-contact-value {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.footer-global-text {
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}

.footer-links {
    font-size: 0.85rem;
}

.footer-links a + a:before {
    content: " | ";
    margin: 0 0.25rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Custom button style for 'sprawdz' */
.btn-sprawdz {
    background-color: var(--dark-color);
    color: var(--secondary-color);
    border: 3px solid var(--primary-color); /* Matching border */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 25px; /* Adjust padding as needed */
    border-radius: 50px; /* Rounded like btn-primary */
    transition: all 0.3s ease;
}

.btn-sprawdz:hover {
    background-color: var(--primary-color); /* Oat background on hover */
    color: var(--dark-color); /* Dark text on hover */
    border-color: var(--dark-color);
}

.core-card .text-showcase {
    font-size: 1.2rem;
  text-transform: uppercase;
}

/* Core Design Page Content Styles */
.why-core-design-intro {
    background-color: var(--primary-color);
    color: var(--dark-color);
    padding-top: 6rem; 
    padding-bottom: 3rem; /* Less padding below intro */
}

.why-core-design-intro .intro-title {
    font-family: var(--font-heading);
    font-size: 2.5rem; /* Adjust size as needed */
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.why-core-design-intro .intro-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.btn-transform {
    background-color: var(--yellow-color);
    color: var(--dark-color);
    border: 2px solid var(--dark-color); /* Dark border */
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 25px;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 0.8rem; /* Slightly smaller */
    display: inline-flex; /* Align icon */
    align-items: center;
}

.btn-transform:hover {
    background-color: var(--dark-color);
    color: var(--yellow-color);
    border-color: var(--yellow-color);
}

.btn-transform svg {
    margin-left: 8px; /* Space between text and icon */
    width: 16px;
    height: auto;
}

.core-feature-section {
    background-color: var(--primary-color);
    color: var(--dark-color);
    padding: 3rem 0; /* Padding between features */
}

.core-feature-section .feature-title {
    font-family: var(--font-heading);
    font-size: 2rem; /* Adjust size */
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 0.75rem;
}

.core-feature-section .feature-description {
    font-size: 1rem;
    line-height: 1.6;
}

.core-feature-section .feature-description strong {
    font-weight: 700; /* Ensure bold text is rendered correctly */
}

.core-feature-section .feature-icon {
    width: 100%;
    max-width: 250px; /* Limit icon size */
    height: auto;
    object-fit: contain; /* Ensure icon scales nicely */
}

/* Contact Page Specific Styles */
.contact-section {
    background-color: var(--primary-color);
    color: var(--dark-color);
    /* Inherits py-5 padding from HTML */
}

.contact-section h2 {
    font-family: var(--font-heading); /* Use primary heading font */
    text-transform: uppercase; /* Make uppercase */
    font-size: 2.2rem; /* Adjust size to match similar headings, e.g., .section-title */
    margin-bottom: 1.5rem !important; /* Ensure consistent bottom margin, overriding Bootstrap if needed */
}

.contact-section .lead {
    /* Optional: Add specific lead styles if needed */
}

.contact-section a {
    color: var(--dark-color); /* Ensure links match text color */
}

.contact-section a:hover {
    color: var(--dark-color); /* Optional: Adjust hover if needed */
    text-decoration: underline;
}

/* Styling for the encouragement section - REMOVED */

/* Footer Styles */

/* Specific styling for inverted highlight within Why Playtos paragraphs */
.why-playtos-section p .inverted-highlight {
    font-size: 2.2rem; /* Match the section title size */
    vertical-align: middle; /* Adjust vertical alignment if needed */
    line-height: 1; /* Adjust line height to prevent large gaps */
}

.core-design .intro-text {
    font-size: 1.1rem; /* Standardized base size */
    font-weight: 700; /* Bold */
    line-height: 1.4;
}

/* Style for the 'concept intro' paragraph */
.why-playtos-section .concept-intro-text {
    font-family: var(--font-heading);
    font-size: 2.2rem; /* Match section title */
    line-height: 1.2; /* Adjust line height for larger font */
    font-weight: 700; /* Use bold heading weight */
    text-transform: uppercase; /* Make uppercase like headings */
    margin-bottom: 1.25rem; /* Keep consistent paragraph margin */
}

/* Styling for the contact page sections */
.playtos-polska-section,
.franchise-section,
.final-cta-section {
    /* Base styles - padding already applied in HTML */
}

.playtos-polska-section {
    background-color: var(--primary-color);
    color: var(--dark-color);
}

.franchise-section {
    background-color: var(--dark-color);
    color: var(--secondary-color); /* Light text on dark background */
}

/* Ensure headings and paragraphs inherit color correctly in franchise section */
.franchise-section h2,
.franchise-section h3,
.franchise-section p,
.franchise-section li {
    color: var(--secondary-color);
}

.final-cta-section {
    background-color: var(--yellow-color);
    color: var(--dark-color); /* Dark text on yellow */
}

/* Ensure final CTA heading uses correct font and color */
.final-cta-section h2 {
    font-family: var(--font-heading);
    color: var(--dark-color);
    line-height: 0.8; /* Added line-height */
}

/* Style for the contact details in Playtos w Polsce section */
.playtos-polska-section .contact-details h5 {
     font-family: var(--font-heading); /* Heading font for sub-titles */
     text-transform: uppercase;
     font-size: 1.1rem; /* Smaller size */
     margin-bottom: 0.5rem;
}

.playtos-polska-section .contact-details p {
    margin-bottom: 0;
    font-size: 1rem;
}

.playtos-polska-section .contact-details a {
    font-weight: normal; /* Normal weight for links */
    color: var(--dark-color);
}

.playtos-polska-section .contact-details a:hover {
    text-decoration: underline;
}

/* Style for larger contact links */
.contact-link-lg {
    font-size: 1.8rem; /* Increased font size further */
    font-weight: normal; /* Keep normal weight */
}

/* Make icons bigger */
.playtos-polska-section .list-unstyled .bi {
    color: var(--dark-color);
    font-size: 1.5rem; /* Increased icon size */
    vertical-align: middle; /* Align with text */
    margin-right: 0.5rem; /* Add some spacing after icons */
}

.franchise-section .list-unstyled .bi {
     color: var(--yellow-color); /* Yellow icons on dark background */
     font-size: 1.5rem; /* Increased icon size */
     vertical-align: middle; /* Align with text */
     margin-right: 0.5rem; /* Add some spacing after icons */
}

/* Style for the franchise logo */
.franchise-logo {
    max-height: 150px; /* Limit logo height */
    width: auto;
}

/* Contact Page Specific Styles - OLD, kept for reference if needed */

/* NEW: Our Outcome Section Styles */
.outcome-section {
    background-color: var(--yellow-color); /* Changed to Yellow background */
    color: var(--dark-color);
    padding-top: 5rem; /* Slightly adjusted padding */
    padding-bottom: 5rem; /* Slightly adjusted padding */
}

.outcome-title {
    font-family: var(--font-heading);
    font-size: 3.5rem; /* Adjusted size */
    font-weight: 700;
    line-height: 0.95; /* Adjusted line-height */
    text-transform: uppercase;
    margin-bottom: 0; /* Remove default bottom margin */
}

.outcome-description {
    font-size: 1rem;
    line-height: 1.6;
}

.list-title {
    font-family: var(--font-body);
    font-size: 1.5rem; /* Increased from 1.2rem to 1.5rem */
    font-weight: 900; 
    text-transform: uppercase;
    margin-bottom: 1rem; /* Reduced margin */
}

.outcome-list li {
    font-family: var(--font-body);
    font-size: 0.95rem; /* Base size for list item container */
    margin-bottom: 1rem; /* Increased margin between items */
    display: flex; 
    align-items: flex-start; /* Align icon/number to the top of the text block */
}

/* NEW: Styles for list item numbers */
.outcome-number-item {
    font-family: var(--font-heading); /* Use heading font */
    font-size: 1.5rem; /* Size for the number */
    font-weight: 700; 
    color: var(--dark-color); 
    min-width: 28px; /* Ensure consistent spacing */
    text-align: center;
    line-height: 1; /* Adjust line height for number */
    margin-top: 0.1em; /* Align number slightly better with the term */
}

/* Styling for the term and description within the list item */
.outcome-term {
    display: block; /* Make term block level */
    font-weight: 700; /* Bold term */
    margin-bottom: 0.2rem; /* Small space below term */
    font-size: 1rem; /* Term font size */
}

.outcome-description-item {
    font-weight: 400; /* Regular weight for description */
    font-size: 0.9rem; /* Description font size */
    line-height: 1.5; /* Description line height */
    margin-bottom: 0; /* Remove default p margin */
    color: var(--dark-color); /* Ensure correct color */
}

/* NEW: Scattered background 7s using pseudo-element */
.outcome-section::before {
    content: "7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7"; /* Restored more 7s */
    position: absolute;
    inset: 0; /* Cover the entire section */
    font-family: var(--font-heading);
    font-size: 7rem; /* Adjust size of individual 7s */
    font-weight: 700;
    line-height: 1.2; /* Reduced vertical spacing */
    letter-spacing: 2.6rem; /* Reduced horizontal spacing */
    color: rgba(35, 34, 32, 0.04); /* Very faint dark color */
    z-index: 0; /* Behind the content */
    pointer-events: none; 
    user-select: none; 
    overflow: hidden; /* Prevent scrollbars if 7s exceed bounds */
    text-align: center; /* Helps distribute */
    word-break: break-all; /* Allow breaking anywhere */
}

/* Responsive Adjustments for Outcome Section */
@media (max-width: 991.98px) { 
    .outcome-section::before {
        font-size: 4rem;
        letter-spacing: 0.4rem; /* Reduced responsive spacing */
        line-height: 1.2; /* Adjusted responsive line height */
    }
}

@media (max-width: 767.98px) { 
    .outcome-title {
        font-size: 2.8rem; 
        margin-bottom: 1rem; 
    }
    .outcome-description {
        font-size: 0.9rem; 
    }
    .outcome-section::before {
        font-size: 3rem;
        letter-spacing: 0.3rem; /* Reduced responsive spacing */
        line-height: 1.3; /* Adjusted responsive line height */
    }
    .list-title {
        font-size: 1.5rem; /* Increased from 1.2rem to 1.5rem */
        margin-bottom: 0.8rem; 
    }
    .outcome-list li {
        font-size: 0.9rem; 
        margin-bottom: 0.4rem; 
    }
    .outcome-number-item {
        font-size: 1.2rem; 
        min-width: 22px; 
    }
    .outcome-section .col-md-6 {
        text-align: center;
    }
    .outcome-section .outcome-list {
        display: inline-block; 
        text-align: left; 
    }
} 

/* Responsive adjustments for Why Go Beyond Section */
@media (max-width: 767.98px) {
    .why-go-beyond {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
    .fist-image-container {
        /* Keep original absolute positioning */
        top: 20%; 
        right: -10%; 
        /* opacity removed from container */
    }
    .fist-icon {
        max-height: 40vh; 
        opacity: 0.4; /* Apply opacity directly to the icon */
    }
    .why-go-beyond .section-title {
        font-size: 1.5rem; 
        margin-bottom: 1.5rem;
    }
    .why-go-beyond .text-content p {
        font-size: 0.9rem;
        line-height: 1.2; 
        margin-bottom: 1rem;
    }
} 
.no-wrap-title {
    white-space: nowrap;
    overflow-wrap: normal;
    text-overflow: unset;
    display: inline-block;
    max-width: 100%;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
}
@media (max-width: 768px) {
  .glide__slide {
    background-size: cover !important;
    background-repeat: no-repeat;
    background-position: center center !important;
  }

  .slide-dziecko-branding {
    background-position: 30% center !important;
  }

  .slide-samolot {
    background-position: center 30% !important;
  }

  .slide-dziewczynka {
    background-position: left center !important;
  }
}