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

:root {
    --yellow: #FFD700;
    --yellow-dark: #E6C200;
    --purple: #6B21A8;
    --purple-light: #9333EA;
    --black: #1a1a1a;
    --white: #ffffff;
    --gray: #f5f5f5;
    --gray-dark: #333333;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--black);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--purple);
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--purple);
}

.btn-whatsapp-small {
    background: #25D366;
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.btn-whatsapp-small:hover {
    background: #1da851;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--black);
    transition: 0.3s;
}

.hero {
    background: linear-gradient(135deg, var(--white) 0%, #f3e8ff 50%, var(--white) 100%);
    padding: 120px 20px 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 2.8rem;
    color: var(--purple);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray-dark);
    margin-bottom: 30px;
    line-height: 1.8;
}

.btn-whatsapp {
    display: inline-block;
    background: var(--yellow);
    color: var(--black);
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.btn-whatsapp:hover {
    background: var(--yellow-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
}

.section {
    padding: 80px 20px;
}

.section h2 {
    font-size: 2.2rem;
    color: var(--purple);
    margin-bottom: 40px;
    text-align: center;
}

.gdzie-pracujemy {
    background: var(--white);
}

.content-block p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.co-robisz {
    background: var(--gray);
}

.task-list {
    max-width: 700px;
    margin: 0 auto;
    list-style: none;
}

.task-list li {
    padding: 20px 20px 20px 60px;
    background: var(--white);
    margin-bottom: 15px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    font-size: 1.1rem;
}

.task-list li::before {
    content: "✓";
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--black);
}

.kogo-szukamy {
    background: var(--white);
}

.columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.column {
    background: var(--gray);
    padding: 30px;
    border-radius: 15px;
}

.column h3 {
    color: var(--purple);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.column ul {
    list-style: none;
}

.column ul li {
    padding: 10px 0 10px 30px;
    position: relative;
}

.column ul li::before {
    content: "•";
    position: absolute;
    left: 10px;
    color: var(--purple);
    font-size: 1.5rem;
}

.wsparcie {
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 100%);
    color: var(--white);
}

.wsparcie h2 {
    color: var(--white);
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    color: var(--black);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.card h3 {
    color: var(--purple);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.card p {
    color: var(--gray-dark);
    font-size: 0.95rem;
}

.faq {
    background: var(--gray);
}

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

.faq-item {
    background: var(--white);
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
    width: 100%;
    padding: 20px 60px 20px 25px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    color: var(--black);
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--purple);
    transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding: 0 25px 20px;
    color: var(--gray-dark);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.cta {
    background: var(--yellow);
    text-align: center;
}

.cta h2 {
    color: var(--black);
    font-size: 1.8rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.cta .btn-whatsapp {
    background: var(--purple);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(107, 33, 168, 0.4);
}

.cta .btn-whatsapp:hover {
    background: var(--purple-light);
    box-shadow: 0 6px 20px rgba(107, 33, 168, 0.5);
}

.footer {
    background: var(--black);
    color: var(--white);
    padding: 40px 20px;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

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

@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image {
        order: -1;
    }

    .hero-image img {
        max-width: 350px;
    }

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

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

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

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

    .btn-whatsapp-small {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        padding: 100px 20px 60px;
    }

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

    .section {
        padding: 60px 20px;
    }

    .section h2 {
        font-size: 1.8rem;
    }

    .footer .container {
        flex-direction: column;
        text-align: center;
    }
}
