/* Reset i podstawowe style */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 40px;
}

section[id] {
    scroll-margin-top: 40px;
}

div {
    word-break: break-word;
    overflow-wrap: break-word;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #1A1A1A;
    background-color: #F5F5F5;
    overflow-x: hidden;
    font-weight: 400;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.main-header {
    background: linear-gradient(135deg, #6B2C91 0%, #8B3DB8 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 2rem;
    font-weight: bold;
    color: #FFD700;
    text-decoration: none;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.logo a:hover {
    transform: scale(1.05);
}

/* Navigation */
.menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-icon span {
    width: 25px;
    height: 3px;
    background-color: #FFD700;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-menu a:hover {
    color: #FFD700;
    background-color: rgba(255, 215, 0, 0.1);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) contrast(1.2);
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(107, 44, 145, 0.8) 0%, rgba(45, 134, 89, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    color: #FFFFFF;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 8px rgba(0,0,0,0.8), 0 0 20px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #FFD700;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.8), 0 0 15px rgba(0,0,0,0.6);
    animation: fadeInUp 1.2s ease;
    font-weight: 600;
}

.btn-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #2C2C2C;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    animation: fadeInUp 1.4s ease;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

/* Sections */
section {
    padding: 4rem 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #6B2C91;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #6B2C91, #2D8659);
    margin: 1rem auto;
    border-radius: 2px;
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, #FFFFFF 0%, #F0F8FF 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.about-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(107, 44, 145, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(107, 44, 145, 0.2);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-card h3 {
    color: #6B2C91;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.about-card p {
    color: #1A1A1A;
    line-height: 1.8;
    font-weight: 400;
}

/* Services Section */
.services-section {
    background: linear-gradient(135deg, #2D8659 0%, #45A77A 100%);
    color: #FFFFFF;
}

.services-section .section-title {
    color: #FFFFFF;
}

.services-section .section-title::after {
    background: linear-gradient(90deg, #FFD700, #FFB6C1);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: scale(1.03);
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 2rem;
    color: #2C2C2C;
}

.service-content h3 {
    color: #6B2C91;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.service-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #1A1A1A;
    font-weight: 400;
}

.service-features {
    list-style: none;
    padding-left: 0;
}

.service-features li {
    padding: 0.5rem 0;
    color: #2D8659;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2D8659;
    font-weight: bold;
}

/* Process Section */
.process-section {
    background: linear-gradient(135deg, #FFB6C1 0%, #FFD700 100%);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6B2C91, #2D8659);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(107, 44, 145, 0.3);
}

.step h3 {
    color: #6B2C91;
    margin-bottom: 1rem;
}

.step p {
    color: #1A1A1A;
    line-height: 1.8;
    font-weight: 400;
}

/* Form Section */
.form-section {
    background: linear-gradient(135deg, #6B2C91 0%, #8B3DB8 100%);
    color: #FFFFFF;
}

.form-section .section-title {
    color: #FFFFFF;
}

.form-section .section-title::after {
    background: linear-gradient(90deg, #FFD700, #FFB6C1);
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #1A1A1A;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-group input,
.form-group select {
    padding: 1rem;
    border: 2px solid #E0E0E0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: #FFFFFF;
    color: #1A1A1A;
    font-weight: 400;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #6B2C91;
    box-shadow: 0 0 0 3px rgba(107, 44, 145, 0.1);
}

.form-group select option {
    color: #000000;
    background-color: #FFFFFF;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    color: #1A1A1A;
    font-size: 0.9rem;
    font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.2rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-label a {
    color: #6B2C91;
    text-decoration: underline;
}

.btn-submit {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #2D8659 0%, #45A77A 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(45, 134, 89, 0.4);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(45, 134, 89, 0.6);
}

/* Benefits Section */
.benefits-section {
    background: #FFFFFF;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-item {
    background: linear-gradient(135deg, #F0F8FF 0%, #FFFFFF 100%);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #6B2C91;
    box-shadow: 0 5px 20px rgba(107, 44, 145, 0.1);
}

.benefit-item h3 {
    color: #6B2C91;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.benefit-item p {
    color: #1A1A1A;
    line-height: 1.8;
    font-weight: 400;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, #FFD700 0%, #FFB6C1 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.testimonial-text {
    color: #1A1A1A;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.8;
    font-size: 1.1rem;
    font-weight: 500;
}

.testimonial-author {
    color: #6B2C91;
    font-weight: bold;
    text-align: right;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, #2D8659 0%, #45A77A 100%);
    color: #FFFFFF;
}

.faq-section .section-title {
    color: #FFFFFF;
}

.faq-section .section-title::after {
    background: linear-gradient(90deg, #FFD700, #FFB6C1);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.95);
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.faq-item summary {
    padding: 1.5rem;
    cursor: pointer;
    font-weight: bold;
    color: #6B2C91;
    font-size: 1.1rem;
    list-style: none;
    transition: background-color 0.3s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::before {
    content: '+ ';
    font-weight: bold;
    margin-right: 0.5rem;
    color: #2D8659;
}

.faq-item[open] summary::before {
    content: '− ';
}

.faq-item summary:hover {
    background-color: rgba(107, 44, 145, 0.05);
}

.faq-item p {
    padding: 1rem 1.5rem;
    color: #1A1A1A;
    line-height: 1.8;
    font-weight: 400;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 5px;
}

/* Contact Section */
.contact-section {
    background: #FFFFFF;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    padding: 2rem;
    background: linear-gradient(135deg, #F0F8FF 0%, #FFFFFF 100%);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(107, 44, 145, 0.1);
}

.contact-item h3 {
    color: #6B2C91;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-item p {
    color: #1A1A1A;
    font-weight: 400;
}

.contact-item a {
    color: #6B2C91;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #2D8659;
    text-decoration: underline;
}

.contact-map-right {
    width: 100%;
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(107, 44, 145, 0.2);
}

.contact-map-right iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

/* Footer */
.main-footer {
    background: linear-gradient(135deg, #2C2C2C 0%, #1A1A1A 100%);
    color: #FFFFFF;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #FFD700;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-section p {
    color: #E0E0E0;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #E0E0E0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #FFD700;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #E0E0E0;
}

/* Policy Pages */
.policy-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #F5F5F5 0%, #FFFFFF 100%);
    min-height: 70vh;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background: #FFFFFF;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    border: 2px solid #E0E0E0;
}

.policy-content h1 {
    color: #6B2C91;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.policy-content h2 {
    color: #2D8659;
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.policy-text {
    color: #1A1A1A;
    line-height: 1.8;
    font-weight: 400;
}

.policy-text p {
    margin-bottom: 1rem;
    color: #1A1A1A;
    font-weight: 400;
}

.policy-text ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
    color: #1A1A1A;
}

.policy-text li {
    margin-bottom: 0.5rem;
    color: #1A1A1A;
    font-weight: 400;
}

.policy-contact-info {
    background: linear-gradient(135deg, #F0F8FF 0%, #FFFFFF 100%);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
    border-left: 4px solid #6B2C91;
}

.policy-contact-info p {
    margin-bottom: 0.5rem;
    color: #1A1A1A;
    font-weight: 400;
}

.policy-contact-info strong {
    color: #6B2C91;
    font-size: 1.1rem;
}

.policy-contact-info a {
    color: #6B2C91;
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-contact-info a:hover {
    color: #2D8659;
    text-decoration: underline;
}

/* Thank You Page */
.thank-you-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6B2C91 0%, #2D8659 100%);
    padding: 3rem 0;
}

.thank-you-content {
    text-align: left;
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    max-width: 800px;
    width: 100%;
}

.thank-you-content h1 {
    color: #6B2C91;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.thank-you-main {
    color: #1A1A1A;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.8;
}

.thank-you-info {
    margin-bottom: 2rem;
}

.thank-you-info h2 {
    color: #2D8659;
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.thank-you-info h2:first-child {
    margin-top: 0;
}

.thank-you-info p {
    color: #1A1A1A;
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 400;
    line-height: 1.8;
}

.thank-you-info a {
    color: #6B2C91;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.thank-you-info a:hover {
    color: #2D8659;
    text-decoration: underline;
}

.thank-you-content p {
    color: #1A1A1A;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.btn-home {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #6B2C91 0%, #2D8659 100%);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.btn-home:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(107, 44, 145, 0.4);
}

/* Additional Pages */
.about-page-section,
.blog-page-section,
.tips-page-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #F5F5F5 0%, #FFFFFF 100%);
    min-height: 70vh;
}

.about-page-content,
.blog-page-content,
.tips-page-content {
    max-width: 900px;
    margin: 0 auto;
    background: #FFFFFF;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    border: 2px solid #E0E0E0;
}

.about-page-content h1,
.blog-page-content h1,
.tips-page-content h1 {
    color: #6B2C91;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.about-page-content p,
.blog-page-content p,
.tips-page-content p {
    color: #1A1A1A;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 400;
}

.blog-article h2,
.tips-content h2 {
    color: #2D8659;
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2C2C2C 0%, #1A1A1A 100%);
    color: #FFFFFF;
    padding: 1.5rem;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
    z-index: 10000;
    display: none;
}

.cookie-popup.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
    color: #E0E0E0;
}

.btn-accept {
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #2C2C2C;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-icon {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #6B2C91 0%, #8B3DB8 100%);
        flex-direction: column;
        padding: 1rem;
        gap: 0;
        display: none;
        box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    }

    .menu-toggle:checked ~ .nav-menu {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .form-wrapper {
        padding: 2rem 1.5rem;
    }

    .policy-content,
    .about-page-content,
    .blog-page-content,
    .tips-page-content {
        padding: 2rem 1.5rem;
    }

    .thank-you-content {
        padding: 2rem 1.5rem;
        text-align: left;
    }

    .thank-you-content h1 {
        font-size: 2rem;
    }

    .thank-you-info h2 {
        font-size: 1.3rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .btn-accept {
        width: 100%;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-map-right {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .about-grid,
    .services-grid,
    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

