:root {
    --bg-color: #f0f4f8;
    --bg-gradient: linear-gradient(135deg, #f0f4f8 0%, #eef2f6 50%, #e0e8f0 100%);
    --surface-color: rgba(255, 255, 255, 0.7);
    --border-color: rgba(0, 122, 255, 0.15);
    --primary: #007aff;
    --secondary: #0056b3;
    --accent: #3399ff;
    --text-main: #1a1a2e;
    --text-muted: #5a6a7e;
    --font-main: 'Outfit', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(135deg, #f0f4f8, #eef2f6, #dce4f0, #ffffff);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    min-height: 100vh;
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-muted {
    color: var(--text-muted);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Glassmorphism */
.glass {
    background: var(--surface-color);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Navbar */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: background 0.3s ease, border-bottom 0.3s ease;
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-main);
    text-decoration: none;
    letter-spacing: 1px;
}

.logo span {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(0, 122, 255, 0.5);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-main);
    text-shadow: 0 0 8px rgba(0,0,0,0.1);
}

.nav-links a.nav-cta {
    padding: 8px 20px;
    background: rgba(0, 122, 255, 0.1);
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 20px;
}

.nav-links a.nav-cta:hover {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 0 15px rgba(0, 122, 255, 0.4);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 30px;
    height: 2px;
    background: var(--text-main);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 80px;
}

.hero-glow-1, .hero-glow-2 {
    position: absolute;
    width: 30vw;
    height: 30vw;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.2;
    animation: pulse 8s infinite alternate;
}

.hero-glow-1 {
    background: var(--primary);
    top: 15%;
    left: 10%;
}

.hero-glow-2 {
    background: var(--secondary);
    bottom: 10%;
    right: 10%;
    animation-delay: 2s;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.1; }
    100% { transform: scale(1.3); opacity: 0.3; }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.counter-wrapper {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.neon-text {
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 800;
    color: var(--primary);
    text-shadow: 0 0 20px rgba(0, 122, 255, 0.4), 0 0 40px rgba(0, 122, 255, 0.2);
    line-height: 1;
}

.counter-label {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: 10px;
    text-shadow: 0 0 10px rgba(0, 122, 255, 0.3);
}

.cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 800;
    border-radius: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 122, 255, 0.3);
    border: none;
    cursor: pointer;
    margin-top: 20px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 122, 255, 0.5);
}

/* General Sections */
.section {
    padding: 120px 0;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 800;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    margin: 15px auto 0;
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 5px;
}

.section-title.left {
    text-align: left;
    margin-bottom: 30px;
}

.section-title.left::after {
    margin: 15px 0 0 0;
}

/* Nasze Projekty / YouTube Grid */
.tabs-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 20px;
}

.tabs-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.tab-btn {
    padding: 12px 30px;
    background: rgba(0, 122, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 25px;
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.tab-btn:hover {
    border-color: var(--primary);
    color: var(--text-main);
}

.tab-btn.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 122, 255, 0.3);
}

.tab-content {
    display: none;
    margin-top: 40px;
}

.tab-content.active {
    display: block;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.video-card {
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.3s ease, box-shadow 0.3s ease;
    background: linear-gradient(180deg, rgba(255,255,255,0.9) 0%, rgba(240,244,248,1) 100%);
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.video-card .hover-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 122, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 0;
}

.video-card iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
    border-radius: 10px;
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.video-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 122, 255, 0.6);
    box-shadow: 0 15px 40px rgba(0, 122, 255, 0.2);
}

.video-card:hover .hover-glow {
    opacity: 1;
}

/* Reels Section */
.reels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.reel-card {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    max-width: 320px;
    margin: 0 auto;
}

.reel-title {
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--text-main);
    text-align: center;
    position: relative;
    z-index: 2;
}

.reel-video-wrapper {
    width: 100%;
    aspect-ratio: 9 / 16;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background: #dce4f0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    cursor: pointer;
    z-index: 1;
}

.reel-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    transition: 0.3s ease;
    z-index: 2;
}

.play-button {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 0 20px rgba(0, 122, 255, 0.4);
    transition: 0.3s ease;
}

.play-button svg {
    width: 30px;
    height: 30px;
    margin-left: 4px; /* Offset for better visual center of triangle */
}

.reel-card:hover {
    transform: translateY(-15px);
    border-color: rgba(0, 122, 255, 0.5);
    box-shadow: 0 20px 50px rgba(0, 122, 255, 0.15);
}

.reel-card:hover .reel-video-wrapper video {
    transform: scale(1.05);
}

.reel-card:hover .play-overlay {
    background: rgba(0, 0, 0, 0);
}

.reel-card:hover .play-button {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(0, 122, 255, 0.6);
}

.reel-video-wrapper.playing .play-overlay {
    opacity: 0;
    pointer-events: none;
}

.reel-card .hover-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 122, 255, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 0;
}

.reel-card:hover .hover-glow {
    opacity: 1;
}

/* O nas */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.features-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border-radius: 12px;
    transition: 0.3s;
    background: rgba(0, 122, 255, 0.03);
}

.feature-card:hover {
    transform: translateX(10px);
    border-color: rgba(0, 122, 255, 0.3);
    box-shadow: 0 5px 15px rgba(0, 122, 255, 0.1);
}

.feature-card .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(0, 122, 255, 0.1);
    color: var(--primary);
    border-radius: 12px;
    font-size: 1.4rem;
    border: 1px solid rgba(0, 122, 255, 0.2);
    flex-shrink: 0;
}

.feature-card h4 {
    font-size: 1.1rem;
    margin-bottom: 3px;
    color: var(--text-main);
}

.feature-card .text-sm {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.about-visual {
    position: relative;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-glass {
    padding: 50px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    animation: drift 6s ease-in-out infinite;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 122, 255,0.05);
}

@keyframes drift {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.glass-header {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    justify-content: center;
}

.glass-header .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 122, 255, 0.3);
}

.glass-header .dot:nth-child(1) { background: #ff5f56; }
.glass-header .dot:nth-child(2) { background: #ffbd2e; }
.glass-header .dot:nth-child(3) { background: #27c93f; }

.about-glass h3 {
    font-size: 2.5rem;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

.about-glass p {
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-main);
    text-shadow: 0 0 10px rgba(0, 122, 255, 0.4);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-top: 5px;
}

.glow-orb {
    position: absolute;
    width: 150px;
    height: 150px;
    background: var(--accent);
    filter: blur(60px);
    border-radius: 50%;
    top: -50px;
    right: -50px;
    opacity: 0.2;
}

/* Opinie */
.rating-summary {
    text-align: center;
    margin-bottom: 60px;
}

.rating-score {
    font-size: 3.5rem;
    font-weight: 800;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.rating-score .star-icon {
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.review-card {
    padding: 40px 30px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.05);
    font-family: serif;
    line-height: 1;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.review-header h4 {
    font-size: 1.2rem;
}

.stars {
    color: #ffd700;
    letter-spacing: 2px;
}

.review-card p {
    color: var(--text-muted);
    font-style: italic;
    font-size: 1.05rem;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
}

.faq-item[open] {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 122, 255, 0.3);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.faq-item summary {
    padding: 25px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.8rem;
    color: var(--primary);
    transition: transform 0.3s;
    line-height: 1;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
    color: var(--secondary);
}

.faq-content {
    padding: 0 25px 25px;
    color: var(--text-muted);
    font-size: 1.1rem;
    animation: slideDown 0.3s ease-out;
}

.faq-content strong {
    color: var(--text-main);
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Form */
.glass-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px;
}

.form-row {
    display: flex;
    gap: 30px;
}

.form-row .form-group {
    flex: 1;
}

.form-group {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: 0.3s;
}

.form-group input::placeholder, .form-group textarea::placeholder {
    color: #555566;
}

.form-group select {
    appearance: none;
    cursor: pointer;
}

.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: '▼';
    font-size: 0.8rem;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 122, 255, 0.2);
    background: rgba(0,0,0,0.5);
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 122, 255, 0.4);
}

#form-success {
    margin-top: 25px;
    padding: 20px;
    background: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.3);
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.hidden {
    display: none !important;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    margin-top: 50px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Responsive */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .section-title.left {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 80px 0;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(5, 7, 5, 0.98);
        flex-direction: column;
        justify-content: center;
        transition: 0.4s ease;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-btn.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .glass-form {
        padding: 30px 20px;
    }
}

/* Footer & Footer Links */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-bottom-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

.footer-bottom-links .sep {
    color: var(--border-color);
}

/* Modals */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    padding: 20px;
}

.modal.active {
    opacity: 1;
    pointer-events: all;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

.modal-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    z-index: 1;
    transform: scale(0.95) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 122, 255, 0.15);
}

.modal.active .modal-container {
    transform: scale(1) translateY(0);
}

.modal-header {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h2 {
    font-size: 1.5rem;
    color: var(--primary);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.5;
    transition: 0.3s;
    line-height: 1;
}

.modal-close:hover {
    opacity: 1;
    color: var(--primary);
    transform: rotate(90deg);
}

.modal-body {
    padding: 30px;
    overflow-y: auto;
    color: var(--text-muted);
    line-height: 1.7;
}

.modal-body h1 {
    font-size: 2rem;
    color: var(--text-main);
    margin-bottom: 20px;
    text-align: center;
}

.modal-body h2 {
    font-size: 1.3rem;
    color: var(--text-main);
    margin: 30px 0 15px 0;
    border-left: 3px solid var(--primary);
    padding-left: 15px;
}

.modal-body p {
    margin-bottom: 15px;
}

.modal-body ul {
    margin: 15px 0 15px 30px;
}

.modal-body li {
    margin-bottom: 8px;
}

.modal-body hr {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 40px 0;
}

.modal-body strong {
    color: var(--primary);
}

.sep-header {
    margin-top: 60px !important;
    color: var(--primary) !important;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Custom Scrollbar for Modal content */
.modal-body::-webkit-scrollbar {
    width: 6px;
}
.modal-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
}
.modal-body::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

@media (max-width: 600px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .modal-container {
        max-height: 90vh;
    }
    
    .modal-body {
        padding: 20px;
    }
}

