/* Import Source Sans 3 font */
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:wght@300;400;600;700&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

/* Tailwind CSS Important Rules */
.nav-menu li {
    margin-bottom: 0 !important;
}

/* Header and Navigation */
header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #40E0D0;
    font-size: 24px !important;
    font-weight: 700 !important;
}

.brand img {
    width: 40px;
    height: 40px;
    box-shadow: none !important;
}

.nav-menu {
    display: flex;
    list-style: none !important;
    gap: 30px;
    margin: 0 !important;
    padding: 0 !important;
}

.nav-menu li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.nav-menu li::before,
.nav-menu li::after {
    display: none !important;
    content: none !important;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 18px;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #40E0D0;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: #40E0D0;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(64, 224, 208, 0.9) 0%, rgba(32, 178, 170, 0.85) 100%), url('najlepsze-oferty-bonusow-vip_6337802240.jpg') center/cover no-repeat;
    padding: 120px 20px !important;
    text-align: center !important;
    color: #ffffff !important;
    min-height: 500px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

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

.hero h1 {
    font-size: 48px !important;
    font-weight: 700 !important;
    margin-bottom: 24px !important;
    color: #ffffff !important;
    line-height: 1.2 !important;
}

.hero-description {
    font-size: 20px !important;
    margin-bottom: 32px !important;
    color: #ffffff !important;
    line-height: 1.6 !important;
}

.cta-button {
    display: inline-block;
    background-color: #ffffff;
    color: #40E0D0;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background-color: #f0f0f0;
}

/* Main Content Sections */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

section {
    margin-bottom: 80px;
}

section h2 {
    font-size: 36px !important;
    font-weight: 700 !important;
    color: #40E0D0 !important;
    margin-bottom: 24px !important;
    padding-bottom: 12px !important;
    border-bottom: 3px solid #40E0D0 !important;
}

section h3 {
    font-size: 26px !important;
    font-weight: 600 !important;
    color: #20B2AA !important;
    margin-top: 32px !important;
    margin-bottom: 20px !important;
}

section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #333;
}

section img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

section img:hover {
    transform: scale(1.02);
}

/* Lists Styling */
ul, ol {
    list-style: none !important;
    margin: 24px 0 !important;
    padding: 0 !important;
}

ul li, ol li {
    position: relative;
    padding-left: 32px !important;
    margin-bottom: 16px !important;
    font-size: 18px;
    line-height: 1.6;
}

ul li::before {
    content: "+" !important;
    position: absolute !important;
    left: 0 !important;
    color: #40E0D0 !important;
    font-weight: 700 !important;
    font-size: 20px !important;
}

ul li::marker {
    display: none !important;
    content: none !important;
}

ol {
    counter-reset: item;
}

ol li {
    counter-increment: item;
}

ol li::before {
    content: counter(item) "." !important;
    position: absolute !important;
    left: 0 !important;
    color: #40E0D0 !important;
    font-weight: 700 !important;
}

ol li::marker {
    display: none !important;
    content: none !important;
}

/* Table Styling */
.table-container {
    overflow-x: auto;
    margin: 32px 0;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    min-width: 600px;
}

thead {
    background-color: #40E0D0;
    color: #ffffff;
}

thead th {
    padding: 16px;
    text-align: left;
    font-weight: 700;
    font-size: 18px;
}

tbody tr {
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.3s ease;
}

tbody tr:hover {
    background-color: #f0f9f9;
}

tbody td {
    padding: 16px;
    font-size: 18px;
}

/* FAQ Section */
.faq-item {
    margin-bottom: 24px;
}

.faq-question {
    font-weight: 700 !important;
    font-size: 20px !important;
    color: #40E0D0 !important;
    margin-bottom: 12px !important;
}

.faq-answer {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    padding-left: 20px;
    border-left: 3px solid #40E0D0;
}

/* Footer */
footer {
    background-color: #20B2AA;
    color: #ffffff;
    padding: 60px 20px 30px;
}

footer p {
    color: #ffffff !important;
}

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

.footer-section h3 {
    font-size: 22px !important;
    font-weight: 700 !important;
    margin-bottom: 20px !important;
    color: #ffffff !important;
}

.footer-section ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer-section ul li {
    margin-bottom: 12px !important;
    padding-left: 0 !important;
}

.footer-section ul li::before,
.footer-section ul li::after {
    display: none !important;
    content: none !important;
}

.footer-section a {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #40E0D0;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 16px;
    color: #ffffff !important;
}

/* Card Styling */
.card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 32px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Icons */
.icon {
    color: #40E0D0;
    font-size: 24px;
    margin-right: 12px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0;
        background-color: #ffffff;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        padding: 20px !important;
        margin-top: 20px;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        margin-bottom: 16px !important;
    }

    .hero h1 {
        font-size: 32px !important;
    }

    .hero-description {
        font-size: 18px !important;
    }

    section h2 {
        font-size: 28px !important;
    }

    section h3 {
        font-size: 22px !important;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 16px;
    }

    .hero {
        padding: 80px 20px !important;
    }

    .hero h1 {
        font-size: 28px !important;
    }

    .cta-button {
        padding: 14px 32px;
        font-size: 16px;
    }

    section h2 {
        font-size: 24px !important;
    }

    section h3 {
        font-size: 20px !important;
    }

    .container {
        padding: 40px 15px;
    }
}
