/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #0a0b2e;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn-primary {
    background: #0a0b2e;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary:hover {
    background: #1a1b3a;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #0a0b2e;
    padding: 12px 24px;
    border: 2px solid #0a0b2e;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 16px;
}

.btn-secondary:hover {
    background: #0a0b2e;
    color: white;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    max-width: 400px;
    width: 90%;
    text-align: center;
}

.cookie-consent.hidden {
    display: none;
}

.cookie-icon {
    width: 60px;
    height: 60px;
    background: #0a0b2e;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.cookie-icon::before {
    content: "";
    width: 30px;
    height: 30px;
    background: #00d4ff;
    border-radius: 50%;
    position: relative;
}

.cookie-icon::after {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    background: #0a0b2e;
    border-radius: 50%;
    top: 15px;
    left: 18px;
    box-shadow: 8px 8px 0 #0a0b2e, 16px 4px 0 #0a0b2e, 4px 24px 0 #0a0b2e, 24px 20px 0 #0a0b2e;
}

.cookie-content h3 {
    color: #0a0b2e;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.cookie-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Header */
.header {
    background: #0a0b2e;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: #00d4ff;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-list a {
    color: white;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: #00d4ff;
}

/* Burger Menu */
.burger-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger-btn span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.burger-btn.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.burger-btn.active span:nth-child(2) {
    opacity: 0;
}

.burger-btn.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #00d4ff 0%, #00a8cc 100%);
    padding: 120px 0 80px;
    border-radius: 0 0 40px 40px;
    margin-bottom: 80px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h2 {
    font-size: 48px;
    font-weight: 700;
    color: #0a0b2e;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 18px;
    color: #0a0b2e;
    margin-bottom: 30px;
    opacity: 0.8;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
}

/* Historia Section */
.historia {
    padding: 80px 0;
    background: #0a0b2e;
}

.historia-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.historia-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.historia-text h3 {
    font-size: 24px;
    font-weight: 600;
    color: #00d4ff;
    margin: 30px 0 15px;
}

.historia-text p {
    color: #ccc;
    margin-bottom: 20px;
    font-size: 16px;
}

.historia-text ul {
    color: #ccc;
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

.historia-text li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.historia-text li::before {
    content: "•";
    color: #00d4ff;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.historia-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
}

/* Usługi Section */
.uslugi {
    padding: 80px 0;
    background: white;
}

.uslugi-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 50px;
}

.uslugi-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.uslugi-card {
    text-align: center;
    padding: 20px;
}

.card-image-circle {
    width: 100%;
    
    overflow: hidden;
    margin: 0 auto 20px;
  
}

.card-image-circle img {
    width: 100%;
    object-fit: cover;
}

.uslugi-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #0a0b2e;
    margin-bottom: 15px;
    line-height: 1.3;
}

.uslugi-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.uslugi-image {
    position: sticky;
    top: 100px;
}

.uslugi-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    min-height: 400px;
}

.uslugi-cta {
    text-align: center;
}

/* Opinie Section */
.opinie {
    padding: 80px 0;
    background: #0a0b2e;
}

.opinie h2 {
    font-size: 36px;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 50px;
}

.opinie-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 50px;
}

.opinie-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.opinie-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    position: relative;
}

.quote-icon {
    font-size: 40px;
    color: #00d4ff;
    position: absolute;
    top: 10px;
    left: 20px;
}

.opinie-card p {
    color: #666;
    font-size: 14px;
    margin: 30px 0 20px;
    font-style: italic;
}

.author-info h4 {
    color: #0a0b2e;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.stars {
    color: #ffd700;
    font-size: 14px;
}

.opinie-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
}

.opinie-cta {
    text-align: center;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #0a0b2e;
}

.faq h2 {
    font-size: 36px;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 50px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8f8f8;
}

.faq-question h3 {
    color: #0a0b2e;
    font-size: 18px;
    font-weight: 600;
}

.faq-icon {
    color: #00d4ff;
    font-size: 24px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 20px 20px;
    color: #666;
}

/* Contact Section */
.kontakt {
    background: linear-gradient(135deg, #00d4ff 0%, #00a8cc 100%);
    padding: 80px 0;
    border-radius: 40px 40px 0 0;
}

.kontakt-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.kontakt-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0a0b2e;
    margin-bottom: 20px;
    line-height: 1.2;
}

.kontakt-text p {
    color: #0a0b2e;
    margin-bottom: 30px;
    opacity: 0.8;
    font-size: 16px;
    line-height: 1.6;
}

.kontakt-info {
    background: rgba(10, 11, 46, 0.1);
    padding: 20px;
    border-radius: 15px;
}

.kontakt-info p {
    margin-bottom: 10px;
    opacity: 1;
    font-size: 14px;
}

.kontakt-form {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    background: #f8f9fa;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: white;
    box-shadow: 0 0 0 2px #00d4ff;
}

.form-group textarea {
    border-radius: 15px;
    resize: vertical;
    min-height: 100px;
}

.kontakt-form .btn-primary {
    width: 100%;
    padding: 15px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
}

.kontakt-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.kontakt-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    max-height: 500px;
}

/* Thank You Section */
.thank-you {
    background: linear-gradient(135deg, #00d4ff 0%, #00a8cc 100%);
    padding: 120px 0;
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
}

.thank-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.thank-text h1 {
    font-size: 48px;
    font-weight: 700;
    color: #0a0b2e;
    margin-bottom: 20px;
    line-height: 1.2;
}

.thank-text p {
    font-size: 18px;
    color: #0a0b2e;
    margin-bottom: 20px;
    opacity: 0.8;
}

.thank-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
}

/* Footer */
.footer {
    background: #0a0b2e;
    padding: 50px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #333;
}

.footer-logo h3 {
    color: #00d4ff;
    font-size: 24px;
    font-weight: 700;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00d4ff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-contact p,
.footer-copyright p {
    color: #999;
    font-size: 14px;
    margin-bottom: 5px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content,
    .historia-content,
    .thank-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .kontakt-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .uslugi-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .opinie-content {
        grid-template-columns: 1fr;
    }
    
    .opinie-cards {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .burger-btn {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #0a0b2e;
        transition: left 0.3s ease;
        padding: 50px 20px;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-list a {
        font-size: 18px;
        padding: 10px 0;
        border-bottom: 1px solid #333;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-text h2 {
        font-size: 32px;
    }
    
    .thank-text h1 {
        font-size: 32px;
    }
    
    .historia-text h2,
    .opinie h2,
    .faq h2 {
        font-size: 28px;
    }
    
    .kontakt-text h2 {
        font-size: 28px;
    }
    
    .uslugi-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .opinie-cards {
        grid-template-columns: 1fr;
    }
    
    .footer-content,
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-text h2 {
        font-size: 28px;
    }
    
    .thank-text h1 {
        font-size: 28px;
    }
    
    .hero-text p,
    .thank-text p {
        font-size: 16px;
    }
    
    .cookie-consent {
        bottom: 10px;
        padding: 20px;
    }
    
    .cookie-content h3 {
        font-size: 20px;
    }
    
    .cookie-content p {
        font-size: 13px;
    }
    
    .kontakt-form {
        padding: 20px;
    }
    
    .uslugi-cards {
        gap: 20px;
    }
    
    .card-image-circle {
        width: 100px;
        height: 100px;
    }
}

              .page {
                padding: 80px 0;
              }
              
              .page__inner {
                padding-top: 40px;
                width: 100%;
                margin: 0 auto;
                display: flex;
                  flex-direction: column;
                  row-gap: 18px;
                  line-height: 1.4;
              }

              .page__inner p {
                padding-bottom: 10px;
                padding-top: 8px;
              }

              .page__inner strong {
                font-weight: 600;
              }

              .page__inner ul {
                padding-left: 20px;
                list-style-type: disc;
              }

              .thank {
                padding-top: 140px;
                padding-bottom: 140px;
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 40px;
                text-align: center;
              }

              .thank-list {
                width: 100%;
                max-width: 1200px;
                margin: 0 auto 40px;
                display: flex;
                flex-direction: column;
                padding: 40px 24px;
                color: #121212;
                background: #E1E0DA;
              }

              .consent {
                border-radius: 10px;
                  background: #F5F5F5;
                    padding: 30px;
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;
                    gap: 15px;
                    max-width: 830px;
                    width: 95%;
                    position: fixed;
                    left: 10%;
                    bottom: 50px;
                    transform: translateX(-10%);
                    z-index: 21;
                 
                   
                }

               
                
                .consent__text {
                  font-size: 14px;
                  color: #131313;
                  span {
                    display: block;
                    font-size: 30px;
                    text-transform: uppercase;
                  }
                }
                
                .consent__buttons {
                  display: flex;
                 
                  gap: 30px;
                  align-items: center;
                  width: 100%;
                 
                }       
                
                @media (max-width: 900px) {
                  .consent {
                    left: 50%;
                    transform: translateX(-50%);
                  }
                  .consent__buttons {
                    justify-content: center;
                    flex-direction: column;
                  }
                }

                .button {
                  position: relative;
                  align-self: center;
                  display: flex;
                  align-items: center;
                  justify-content: center;
                  text-decoration: none;
                  border: none;
                  border-radius: 20px;
                 
                  max-width: 400px;
                  min-height: 48px;
                  padding: 0 24px;
                  font-family:
                    Roboto,
                    -apple-system,
                    Roboto,
                    Helvetica,
                    sans-serif;
                  font-size: 18px;
                  font-weight: 700;
                  color: rgba(255, 255, 255, 1);
                  white-space: nowrap;
                  text-transform: uppercase;
                  cursor: pointer;
                }

                