:root {
    /* Colors - Main Palette */
    --primary-main: #FF385C;
    --primary-light: #FF6E8C;
    --primary-dark: #E01E4C;
    --secondary-main: #FF385C; /* Assuming this is the same as primary based on Figma */
    --secondary-light: #FF6E8C;
    --secondary-dark: #E01E4C;

    /* Colors - Text */
    --text-primary: #222222;
    --text-secondary: #717171;
    --text-disabled: #BDBDBD;
    --text-contrast: #FFFFFF;

    /* Colors - Background */
    --background-default: #FFFFFF;
    --background-paper: #F7F7F7;
    --background-disabled: #E0E0E0;

    /* Colors - Status (from Figma, not used in initial request but good to have) */
    --status-error: #D32F2F;
    --status-warning: #ED6C02;
    --status-info: #0288D1;
    --status-success: #2E7D32;

    /* Colors - Actions (Overlays / Text) */
    --action-hover-overlay: rgba(0,0,0,0.04);
    --action-pressed-overlay: rgba(0,0,0,0.08);
    --action-disabled-bg-overlay: rgba(0,0,0,0.12); /* Used for background of disabled button */
    --action-disabled-content: rgba(0,0,0,0.32); /* Used for text of disabled button */


    /* Typography */
    --font-family-main: 'Outfit', sans-serif;

    /* Spacing (Base 4px) */
    --space-xxs: 4px;  /* 1 */
    --space-xs: 8px;   /* 2 */
    --space-s: 12px;   /* 3 */
    --space-m: 16px;   /* 4 */
    --space-l: 24px;   /* 6 */
    --space-xl: 32px;  /* 8 */
    --space-xxl: 64px; /* 16 */

    /* Corners (Base 4px) */
    --corner-xxs: 4px;
    --corner-xs: 8px;
    --corner-s: 12px;
    --corner-m: 16px;
    --corner-l: 24px;
    --corner-xl: 32px;
    --corner-xxl: 64px;

    /* Transitions */
    --transition-short: 0.15s ease;
    --transition-medium: 0.3s ease;
}

/* Global Styles */
body {
    font-family: var(--font-family-main);
    margin: 0;
    padding: 0;
    background-color: var(--background-default);
    color: var(--text-primary);
    line-height: 1.5;
    opacity: 0; /* For hero fade-in */
    animation: fadeIn 0.5s ease-in-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-xl) 0;
}

h1, h2, h3 {
    font-family: var(--font-family-main);
    color: var(--text-primary);
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2rem;
}

p {
    font-family: var(--font-family-main);
    font-size: 1.25rem;
    color: var(--text-secondary);
}

a {
    color: var(--primary-main);
    text-decoration: none;
    transition: color var(--transition-short);
}

a:hover {
    color: var(--primary-light);
}

/* Hero Section */
#hero {
    background-color: var(--background-paper);
    text-align: center;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding: var(--space-l) var(--space-m);
}

#hero .container {
    width: 100%;
    max-width: 1200px;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#hero h1 {
    color: var(--text-primary);
    font-size: 3.8rem;
    margin-bottom: var(--space-l);
    line-height: 1.2;
}

#hero p {
    color: var(--text-secondary);
    font-size: 1.15rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto var(--space-xl) auto;
}

#hero h2 {
    font-family: var(--font-family-main);
    font-size: 1.0rem;
    color: var(--text-primary);
    margin-top: var(--space-l);
    margin-bottom: var(--space-xl);
    font-weight: 300;
}

#loops-form {
    position: relative;
}

#loops-form input[type="email"] {
    padding: var(--space-s) var(--space-m);
    border: none;
    border-radius: var(--corner-xxl);
    background-color: var(--background-default);
    font-family: var(--font-family-main);
    font-size: 1rem;
    margin-right: var(--space-xs);
    min-width: 250px;
    box-shadow: none;
}

#loops-form button[type="submit"],
.cta-button {
    padding: var(--space-s) var(--space-l);
    background-color: var(--primary-main);
    color: var(--text-contrast);
    border: none;
    border-radius: var(--corner-xxl);
    font-family: var(--font-family-main);
    font-size: 1rem;
    cursor: pointer;
    transition: background-color var(--transition-short), box-shadow var(--transition-short);
    position: relative;
    overflow: hidden;
}

#loops-form button[type="submit"]::before,
.cta-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    transition: background-color var(--transition-short);
    z-index: 0;
}

#loops-form button[type="submit"]:hover::before,
.cta-button:hover::before {
    background-color: var(--action-hover-overlay);
}

#loops-form button[type="submit"]:active::before,
.cta-button:active::before {
    background-color: var(--action-pressed-overlay);
}

#loops-form button[type="submit"]:disabled,
.cta-button:disabled {
    background-color: var(--background-disabled);
    color: var(--action-disabled-content);
    cursor: not-allowed;
}

#loops-form button[type="submit"]:disabled::before,
.cta-button:disabled::before {
    background-color: var(--action-disabled-bg-overlay);
}

.rodo-text {
    font-family: var(--font-family-main);
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 0;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

/* About Section */
#about {
    background-color: var(--background-default);
}

#about h2 {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.card-container {
    display: flex;
    gap: var(--space-m);
    flex-direction: column;
}

.card {
    background-color: var(--background-paper);
    padding: var(--space-l);
    border: none;
    border-radius: var(--corner-xs);
    flex: 1;
    box-shadow: none;
}

.card p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Why Us Section */
#why-us {
    background-color: var(--background-paper);
}

#why-us h2 {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.grid-container {
    display: grid;
    gap: var(--space-l);
    grid-template-columns: 1fr;
}

.grid-item h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.grid-item p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
}

/* How It Works Section */
#how-it-works {
    background-color: var(--background-default);
    text-align: center;
}

#how-it-works h2 {
    margin-bottom: var(--space-xl);
}

#how-it-works ul {
    list-style: none;
    padding: 0;
    margin-bottom: var(--space-l);
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

#how-it-works li {
    font-family: var(--font-family-main);
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: var(--space-s);
}

.cta-appeal {
    font-family: var(--font-family-main);
    font-size: 1rem;
    color: var(--primary-main);
    font-weight: bold;
    margin-bottom: var(--space-m);
}

.cta-button {
    display: inline-block;
    margin-top: var(--space-m);
}

/* FAQ Section */
#faq {
    background-color: var(--background-paper);
}

#faq h2 {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.accordion-item {
    background-color: var(--background-default);
    margin-bottom: var(--space-xs);
    border: none;
    border-radius: var(--corner-xs);
    box-shadow: none;
    overflow: hidden;
}

.accordion-header {
    background-color: transparent;
    color: var(--text-primary);
    cursor: pointer;
    padding: var(--space-m);
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    font-size: 1rem;
    font-family: var(--font-family-main);
    font-weight: bold;
    transition: background-color var(--transition-short);
}

.accordion-header:hover {
    background-color: rgba(0,0,0,0.02);
}

.accordion-content {
    padding: 0 var(--space-m) var(--space-m) var(--space-m);
    display: none;
    overflow: hidden;
    background-color: var(--background-default);
}

.accordion-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
    padding-top: var(--space-s);
}

/* Footer */
#footer {
    background-color: var(--background-default);
    padding: var(--space-xl) 0 var(--space-l) 0;
    text-align: center;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-primary);
    margin-bottom: var(--space-l);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    margin-bottom: var(--space-l);
    flex-wrap: wrap;
}

.footer-links div {
    text-align: left;
}

.footer-links h4 {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: var(--space-s);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li a {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.footer-links li a:hover {
    color: var(--text-primary);
}

.copyright-text {
    font-size: 0.75rem;
    color: var(--text-disabled);
    margin-top: var(--space-l);
}

/* Responsive Design */
@media (min-width: 768px) {
    .container {
        padding: var(--space-l) var(--space-m);
    }
    .card-container {
        flex-direction: row;
        gap: var(--space-l);
    }
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-l);
    }
    #loops-form {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    #loops-form input[type="email"] {
        margin-bottom: 0;
        margin-right: var(--space-s);
    }
    .footer-links {
        gap: var(--space-xxl);
    }
    #hero {
        padding: var(--space-l) var(--space-m);
    }
    #hero h1 {
        font-size: 4.5rem;
    }
    #hero p {
        font-size: 1.25rem;
    }
    #hero h2 {
        font-size: 1.1rem;
        margin-top: var(--space-m);
    }
    .card-container {
        flex-direction: row;
        gap: var(--space-l);
    }
}

@media (min-width: 1024px) {
    .grid-container {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-xl);
    }
    .container {
        padding: var(--space-xl) 0;
    }
}

/* Utility for active accordion */
.accordion-item.active .accordion-content {
    display: block;
}

/* Global Resets and Base Styles */
:root {
    --font-primary: 'Outfit', sans-serif;

    /* Updated Color Palette - Light Mode */
    --text-main: #1A1A1A; /* Darker for better contrast */
    --text-secondary: #555555;
    --text-disabled: #B0B0B0;
    --text-contrast: #FFFFFF;
    
    --bg-default: #FFFFFF;
    --bg-section-alt: #F7F7F7; /* Will be used sparingly or removed if all white */
    --bg-disabled: #E0E0E0;

    --accent-main: #FF385C;
    --accent-light: #FF6B8A;
    --accent-dark: #D62F4C;

    --status-success: #2E7D32;
    --status-error: #D32F2F;
    --status-warning: #FFA000;

    /* Spacing System (base 4px) */
    --space-xs: 4px;
    --space-s: 8px;
    --space-m: 16px;
    --space-l: 24px;
    --space-xl: 32px;
    --space-xxl: 48px;
    --space-xxxl: 64px;

    /* Corner Radius System (base 4px) */
    --corner-s: 4px;
    --corner-m: 8px;
    --corner-l: 12px;
    --corner-xl: 16px;
    --corner-xxl: 24px; /* For pill shapes, use a very large value like 50px or 9999px */
    --corner-pill: 9999px;

    --border-default: 1px solid #E0E0E0;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 100%; /* 16px base */
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-default);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    opacity: 0;
    animation: fadeInBody 0.7s ease-out forwards;
}

h1, h2, h3 {
    margin-bottom: var(--space-m);
    font-weight: 700;
    line-height: 1.3;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.8rem); /* Responsive font size */
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: var(--space-l);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    color: var(--text-main);
}

p {
    margin-bottom: var(--space-m);
    font-size: 1.25rem;
    color: var(--text-secondary);
}

a {
    color: var(--accent-main);
    text-decoration: none;
    transition: color 150ms ease;
}

a:hover,
a:focus {
    color: var(--accent-dark);
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: var(--space-l) 0;
}

.content-section {
    padding: var(--space-xxl) 0;
    background-color: var(--bg-default); /* All sections white by default */
}

.section-bg-alt {
    /* background-color: var(--bg-section-alt); Keeping this for now if we need subtle bg diff */
    /* For now, keep it white to match the user's request for a white page */
     background-color: var(--bg-default);
}

/* Hero Section */
.hero-section {
    background-color: var(--bg-section-alt); /* Hero is allowed to have the light gray */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-xl);
    padding-top: var(--space-xxxl); /* Reverted from calc(), adjust as needed */
    position: relative;
}

.hero-section .container {
    padding-top: var(--space-xl); /* Reduced padding at the top */
    padding-bottom: var(--space-xxxl);
}

.hero-logo-placeholder img {
    width: 180px; /* Adjust as needed */
    height: auto;
    margin: 0 auto var(--space-l) auto;
}

.hero-section h1 {
    color: var(--text-main);
    margin-bottom: var(--space-l);
    font-size: clamp(3.5rem, 7vw, 5.5rem); /* Increased main hero text size */
}

.hero-subtext {
    font-size: 1.5rem; /* Increased subtext size */
    line-height: 1.7;
    max-width: 750px; /* Adjusted max-width slightly */
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--space-xxl); /* Increased space to newsletter */
    color: var(--text-secondary);
}

.newsletter-signup h2 {
    font-size: 1.1rem; /* Smaller than hero-subtext, but larger than RODO */
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl); /* Increased margin-bottom */
}

.newsletter-signup #subscriber-count {
    font-weight: 700;
    color: var(--accent-main);
}

#loops-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-s);
    margin-bottom: var(--space-s);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

#loops-form input[type="email"] {
    flex-grow: 1;
    padding: var(--space-m);
    border-radius: var(--corner-pill);
    background-color: var(--bg-default);
    font-size: 1rem;
    min-width: 200px;
}

#loops-form button[type="submit"] {
    padding: var(--space-m) var(--space-l);
    background-color: var(--accent-main);
    color: var(--text-contrast);
    border: none;
    border-radius: var(--corner-pill);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 150ms ease, transform 150ms ease;
}

#loops-form button[type="submit"]:hover {
    background-color: var(--accent-dark);
}
#loops-form button[type="submit"]:active {
    transform: scale(0.98);
}
#loops-form button[type="submit"]:disabled {
    background-color: var(--bg-disabled);
    color: var(--text-disabled);
    cursor: not-allowed;
}

#form-success-message {
    margin-top: var(--space-m);
    font-weight: 500;
}

.rodo-text {
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: var(--space-m) auto 0 auto;
    max-width: 600px;
}

/* "Czym jest Venuely?" Section (o-nas) */
#o-nas .feature-block {
    display: flex;
    flex-direction: column; /* Stack on mobile */
    align-items: center;
    gap: var(--space-xl);
    margin-bottom: var(--space-xxl);
}

#o-nas .feature-block:last-child {
    margin-bottom: 0;
}

#o-nas .feature-image { /* Styles for the <figure> element */
    flex-basis: 45%;
    /* background-color: #e9e9e9; Remove placeholder background */
    min-height: 250px; /* Adjust as needed based on image aspect ratio */
    width: 100%; /* Full width on mobile */
    border-radius: var(--corner-l);
    display: flex;
    flex-direction: column; /* Stack image and caption */
    align-items: center;
    justify-content: center;
    margin: 0; /* Reset figure default margin */
}

#o-nas .feature-image img {
    max-width: 100%;
    max-height: 400px; /* Control max image height */
    height: auto;
    border-radius: var(--corner-m); /* Optional: if you want rounded corners on images themselves */
    object-fit: contain;
}

#o-nas .feature-image figcaption {
    font-size: 0.75rem;
    color: var(--text-disabled);
    margin-top: var(--space-xs);
    text-align: center;
}

#o-nas .feature-image figcaption a {
    color: var(--text-disabled);
    text-decoration: underline;
}

#o-nas .feature-image figcaption a:hover {
    color: var(--text-secondary);
}

#o-nas .feature-text {
    flex-basis: 50%;
    text-align: left;
}

#o-nas .feature-text h3 {
    margin-bottom: var(--space-s);
    color: var(--text-main);
}

/* Desktop layout for Czym jest Venuely? */
@media (min-width: 768px) {
    #o-nas .feature-block {
        flex-direction: row;
        text-align: left;
        align-items: center; /* Vertically align items in the row */
    }
    /* First block: image left, text right */
    #o-nas .feature-block:nth-child(odd) .feature-image.feature-image-left {
        order: 1;
        margin-right: var(--space-xl); 
        margin-left: 0;
    }
    #o-nas .feature-block:nth-child(odd) .feature-text {
        order: 2;
        padding-left: 0; /* Remove padding if margin is on image */
    }

    /* Second block: text left, image right */
    /* HTML for the second block has text element first, then image element */
    #o-nas .feature-block:nth-child(even) .feature-text {
        order: 1; 
        margin-right: var(--space-xl); 
        margin-left: 0;
        padding-right: 0; 
    }
    #o-nas .feature-block:nth-child(even) .feature-image.feature-image-right { 
        order: 2; 
        margin-left: 0; 
    }
    
    #o-nas .feature-image { 
        width: auto; 
        flex-shrink: 0; 
    }
}

/* "Dlaczego warto?" Section */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

.benefit-item {
    text-align: center;
    padding: var(--space-l);
    /* background-color: var(--bg-default); No background needed if section is white */
    border-radius: var(--corner-m);
    /* box-shadow: 0 2px 10px rgba(0,0,0,0.05); No shadows */
}

.benefit-icon-placeholder {
    width: 60px;
    height: 60px;
    background-color: var(--accent-light);
    border-radius: 50%;
    margin: 0 auto var(--space-m) auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-contrast);
    font-size: 1.5rem; /* Example icon size */
}
/* Example text for icon placeholder */
.benefit-icon-placeholder::before {
    content: "★"; 
}

.benefit-item h3 {
    margin-bottom: var(--space-s);
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* "Co planujemy" + FAQ Section */
#co-planujemy .section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-xl) auto;
}

#co-planujemy .platform-features {
    margin-bottom: var(--space-xxl);
    text-align: center;
}

#co-planujemy .platform-features h3 {
    margin-bottom: var(--space-l);
}

#co-planujemy .platform-features ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: var(--space-l);
    text-align: left; /* Align list items left for readability */
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

#co-planujemy .platform-features ul li {
    padding-left: var(--space-m);
    position: relative;
    margin-bottom: var(--space-s);
}

#co-planujemy .platform-features ul li::before {
    content: "✓"; /* Checkmark or other icon */
    color: var(--accent-main);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.cta-text {
    margin-bottom: var(--space-m);
    font-size: 1.1rem;
}

.accent-text {
    color: var(--accent-main);
    font-weight: 700;
}

.cta-button-container {
    text-align: center;
    margin-top: var(--space-l);
}

.cta-button {
    display: inline-block;
    padding: var(--space-m) var(--space-xl);
    background-color: var(--accent-main);
    color: var(--text-contrast);
    border-radius: var(--corner-pill);
    font-weight: 500;
    text-decoration: none;
    transition: background-color 150ms ease, transform 150ms ease;
}

.cta-button:hover {
    background-color: var(--accent-dark);
    color: var(--text-contrast); /* Ensure text color remains on hover */
    text-decoration: none;
}
.cta-button:active {
    transform: scale(0.98);
}

.faq-section h3 {
    text-align: center;
    margin-bottom: var(--space-l);
    margin-top: var(--space-xxl); /* Space between features and FAQ title */
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: var(--space-s);
    border: var(--border-default);
    border-radius: var(--corner-m);
    overflow: hidden; /* Ensures content doesn't spill out on animation */
}

.accordion-header {
    background-color: transparent; /* No background */
    color: var(--text-main);
    cursor: pointer;
    padding: var(--space-m) var(--space-l);
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
    position: relative;
}

.accordion-header::after {
    content: '+'; /* Indicator for collapsed state */
    font-size: 1.5rem;
    color: var(--accent-main);
    position: absolute;
    right: var(--space-l);
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header::after {
    content: '−'; /* Indicator for expanded state */
    transform: translateY(-50%) rotate(180deg); /* Optional: rotate for a different effect */
}

.accordion-content {
    padding: 0 var(--space-l) var(--space-l) var(--space-l);
    background-color: transparent;
    display: none;
    border-top: var(--border-default); /* Separator line */
}

.accordion-content p {
    margin-bottom: 0; /* Remove default p margin if it's the only element */
    padding-top: var(--space-m);
}

/* Social Media Section */
#social-media {
    text-align: center;
}
#social-media h2 {
    margin-bottom: var(--space-l);
}
.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-l);
    flex-wrap: wrap;
}
.social-link {
    font-size: 1.1rem;
    padding: var(--space-s) var(--space-m);
    /* Add more styling for social links if needed, e.g., icons */
    text-decoration: none;
    color: var(--accent-main);
}
.social-link:hover {
    color: var(--accent-dark);
    text-decoration: underline;
}

/* Contact Section */
#kontakt {
    text-align: center;
}
#kontakt p {
    font-size: 1.1rem;
}
#kontakt a {
    font-weight: 500;
}

/* Footer */
footer {
    text-align: center;
    /* border-top: var(--border-default); REMOVED as per request */ 
}

footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-s);
}

footer p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.footer-links a {
    color: var(--text-secondary);
    margin: 0 var(--space-s);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--accent-main);
}

/* Animation for Hero Section - optional fade-in */
body {
    opacity: 0;
    animation: fadeInBody 0.7s ease-out forwards;
}

@keyframes fadeInBody {
    to {
        opacity: 1;
    }
}

/* Responsive adjustments if any further needed */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 3rem; /* Adjusted for new base size */
    }
    .hero-subtext {
        font-size: 1.25rem; /* Adjusted for new base size */
    }
    #loops-form {
        flex-direction: column;
        max-width: 100%;
    }
    #loops-form input[type="email"],
    #loops-form button[type="submit"] {
        width: 100%;
        max-width: 350px; /* Limit width on mobile too */
    }

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

    #o-nas .feature-text {
        text-align: center; /* Center text on mobile if image is full width */
    }
    #o-nas .feature-block:nth-child(odd) .feature-text,
    #o-nas .feature-block:nth-child(even) .feature-text {
        padding-left: 0;
        padding-right: 0;
    }

    .vision-points {
        grid-template-columns: 1fr; /* Stack vision points on mobile */
    }

    .social-icons-container {
        gap: var(--space-l); /* Adjusted gap for mobile */
    }
    .social-icon-link {
        font-size: 1.2rem; /* Keep font-size if it affects anything, or remove */
        width: 34px; /* Adjusted for mobile (approx 15% smaller than 40px) */
        height: 34px; /* Adjusted for mobile */
    }
}

/* NEW: Top Navigation Bar */
.top-nav {
    background-color: var(--bg-section-alt);
    position: relative;
}

.top-nav .container {
    display: flex;
    justify-content: center; /* Center the logo */
    align-items: center;
    padding-top: var(--space-s);
    padding-bottom: var(--space-s);
}

.nav-logo img {
    height: 64px; /* Adjust as needed, e.g. 40px or 50px */
    width: auto;
}

/* "Wizja Przyszłości" Section (formerly co-planujemy) */
#wizja-przyszlosci .section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-xl) auto;
}

.vision-points {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.vision-point {
    display: flex;
    align-items: flex-start;
    gap: var(--space-l);
    padding: 0;
    background-color: transparent;
    border: none;
    border-radius: 0;
}

.vision-icon {
    flex-shrink: 0;
    width: 48px; /* Maintain consistent icon size */
    height: 48px; /* Maintain consistent icon size */
    object-fit: contain; /* Ensure icon scales nicely within bounds */
}

/* Remove old placeholder styles */
.vision-icon-placeholder {
    display: none; 
}

.vision-icon-placeholder::before {
    content: "";
}

.vision-text-content {
    flex-grow: 1;
    text-align: left;
}

.vision-point h4 {
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
    color: var(--text-main);
}

.vision-point p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* CTA text and button styling is likely reused from previous .cta-text, .accent-text, .cta-button */
#wizja-przyszlosci .cta-text {
    text-align: center;
    margin-top: var(--space-l);
}

#wizja-przyszlosci .cta-button-container {
    text-align: center;
    margin-top: var(--space-l);
}


/* Merged Social Media & Contact Section */
#social-contact {
    text-align: center;
    /* background-color: var(--bg-section-alt); /* Kept from original social-media */
}

#social-contact h2 {
    margin-bottom: var(--space-m);
}

#social-contact > .container > p:first-of-type { /* The intro paragraph */
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--space-xl);
}

.social-icons-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-xl); /* Increased gap for more spacing */
    margin-bottom: var(--space-l);
}

.social-icon-link {
    color: var(--accent-main);
    text-decoration: none;
    border-radius: var(--corner-pill);
    width: 54px; /* Reduced size by approx 15% (from 64px) */
    height: 54px; /* Reduced size by approx 15% (from 64px) */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease; /* Added subtle transform for interaction */
}

.social-icon-link svg, /* Style existing SVGs */
.social-icon-link img { /* Style new IMG SVGs */
    width: 100%; /* Use 100% to fill the <a> tag */
    height: 100%; /* Use 100% to fill the <a> tag */
    object-fit: contain;
}

.social-icon-link svg {
    fill: var(--accent-main); /* Set icon color for remaining inline SVGs */
}

.social-icon-link:hover svg {
    fill: var(--accent-dark); /* Darken icon on hover for remaining inline SVGs */
}

/* img SVGs will inherent color from the file or can be targeted if needed */

.social-icon-link:hover {
    /* background-color: var(--accent-light); Removed hover background */
    text-decoration: none;
    transform: scale(1.1); /* Slight scale on hover instead of background change */
}

.contact-email {
    font-size: 1.1rem;
    margin-top: var(--space-m);
}

.contact-email a {
    font-weight: 500;
}

/* Ensure no double border-top from an old class */
#footer { /* If this ID is still used, ensure its border-top is also removed or reset */
    border-top: none !important; 
}

/* Remove styles for .accordion and .accordion-item if not used elsewhere, */
/* or ensure they don't conflict if kept for other potential uses. */
/* For now, assuming they are specific to the old FAQ and might not be needed globally. */
/* If they were styled very generically, they might not cause issues. */

/* Example: Hiding old accordion style if it's too specific */
/* .accordion, .accordion-item { display: none; } */

/* Make sure the overall body animation is still present */
body {
    font-family: var(--font-primary);
    background-color: var(--bg-default);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    opacity: 0; /* For hero fade-in */
    animation: fadeInBody 0.7s ease-out forwards; /* Renamed from just fadeIn to avoid conflicts if any */
}

@keyframes fadeInBody {
    to {
        opacity: 1;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 3rem; /* Adjusted for new base size */
    }
    .hero-subtext {
        font-size: 1.25rem; /* Adjusted for new base size */
    }
    /* ... (other existing mobile styles) ... */

    .vision-points {
        grid-template-columns: 1fr; /* Stack vision points on mobile */
    }

    .social-icons-container {
        gap: var(--space-l); /* Adjusted gap for mobile */
    }
    .social-icon-link {
        font-size: 1.2rem; /* Keep font-size if it affects anything, or remove */
        width: 34px; /* Adjusted for mobile (approx 15% smaller than 40px) */
        height: 34px; /* Adjusted for mobile */
    }
}

/* Styling for new text elements and adjustments */
.section-subheading {
    font-size: 1.25rem;
    color: var(--text-secondary);
    text-align: left;
    margin-top: calc(var(--space-m) * -0.5);
    margin-bottom: var(--space-xl);
    max-width: 750px;
    line-height: 1.5;
}

.section-paragraph {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-m);
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-paragraph.strong {
    font-weight: 500;
    color: var(--text-main);
}

.section-h3 {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    color: var(--text-main);
    text-align: center;
    margin-top: var(--space-xxxl); /* Increased top margin for more separation */
    margin-bottom: var(--space-l);
}

/* "Dlaczego warto?" Section Adjustments */
#dlaczego-warto .benefit-item {
    text-align: center;
    padding: var(--space-l);
    background-color: var(--bg-section-alt);
    border-radius: var(--corner-m);
    /* Removed box-shadow as per earlier requests */
}

#dlaczego-warto .benefit-item h3 {
    margin-bottom: var(--space-s);
    font-size: 1.3rem;
}

/* "Wizja Przyszłości" Section Adjustments */
#wizja-przyszlosci .vision-points {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

#wizja-przyszlosci .vision-point {
    display: flex;
    align-items: flex-start;
    gap: var(--space-l);
    padding: 0;
    background-color: transparent;
    border: none;
    border-radius: 0;
}

#wizja-przyszlosci .vision-point h4 {
    font-size: 1.2rem;
}

.signup-benefits-list {
    list-style: none;
    padding-left: 0;
    max-width: 500px;
    margin: var(--space-m) auto 0 auto;
    text-align: left;
}

.signup-benefits-list li {
    font-size: 1.1rem;
    color: var(--text-main);
    padding-left: var(--space-l);
    position: relative;
    margin-bottom: var(--space-s);
    line-height: 1.5;
}

.signup-benefits-list li::before {
    content: '✨';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-main);
    font-size: 1.1rem;
}

/* Ensure benefit icon placeholder CSS is removed or commented out if not used */
.benefit-icon-placeholder {
    display: none;
}

/* Section Subheading Alignment */
.section-subheading {
    font-size: 1.25rem;
    color: var(--text-secondary);
    text-align: left;
    margin-top: calc(var(--space-m) * -0.5);
    margin-bottom: var(--space-xl);
    max-width: 100%;
    line-height: 1.5;
}

/* Ensure specific paragraph styles are reviewed against the new global p size */
#o-nas .feature-text p,
#dlaczego-warto .benefit-item p,
#wizja-przyszlosci .vision-point p,
#wizja-przyszlosci .section-paragraph,
#social-contact .container > p:first-of-type,
#social-contact .contact-email,
footer p {
    font-size: 1.25rem;
}

/* Exception: Rodo text and potentially vision point details might need to be smaller */
#wizja-przyszlosci .vision-point p {
    font-size: 1.1rem;
}

/* "Dlaczego warto dołączyć już teraz?" section - custom list styling */
.signup-benefits-list {
    list-style: none;
    padding-left: 0;
    display: flex; /* Arrange items in a row */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    justify-content: space-around; /* Distribute items evenly */
    gap: var(--space-l);
    max-width: 900px; /* Adjust max-width as needed */
    margin: var(--space-xl) auto var(--space-xl) auto; 
}

.signup-benefits-list li {
    font-size: 1.2rem; /* Increased text size */
    color: var(--text-main);
    /* padding-left: var(--space-l); Remove default padding */
    position: relative;
    margin-bottom: var(--space-s);
    line-height: 1.5;
    display: flex; /* Align icon and text */
    flex-direction: column; /* Stack icon above text */
    align-items: center; /* Center items */
    text-align: center;
    flex-basis: 250px; /* Give a base width to each item */
}

.signup-benefits-list .benefit-icon-placeholder {
    /* This class is no longer used for the actual icons here, keep it hidden or remove */
    display: none;
}

.signup-benefits-list li::before {
    /* content: '✨'; Remove default emoji, using span instead */
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-main);
    font-size: 1.1rem;
}

.benefit-icon {
    width: 64px; /* Adjust size as needed */
    height: 64px; /* Adjust size as needed */
    object-fit: contain;
    margin-bottom: var(--space-s);
} 