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

:root {
    --primary: #ff6b35;
    --dark: #1a1a1a;
    --darker: #0d0d0d;
    --light: #f4f4f4;
    --steel: #4a5568;
    --accent: #fbbf24;
}

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

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 2px solid var(--primary);
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

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

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

.lang-switcher {
    display: flex;
    gap: 0.5rem;
}

.lang-btn {
    background: transparent;
    border: 2px solid var(--steel);
    color: var(--light);
    padding: 0.3rem 0.8rem;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 0.9rem;
}

.lang-btn:hover, .lang-btn.active {
    background: var(--primary);
    border-color: var(--primary);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
        linear-gradient(rgba(13, 13, 13, 0.7), rgba(13, 13, 13, 0.7)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23262626" width="1200" height="600"/><path d="M0 300 Q300 200 600 300 T1200 300" stroke="%23ff6b35" stroke-width="2" fill="none" opacity="0.3"/></svg>');
    background-size: cover;
    background-position: center;
    padding: 0 5%;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
}

.hero-content {
    max-width: 800px;
    text-align: center;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--light);
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-highlight {
    color: var(--primary);
    display: block;
    font-size: 4rem;
    margin-top: 0.5rem;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #ccc;
}

.cta-button {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 1rem 3rem;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    border: 2px solid var(--primary);
    font-size: 1.1rem;
}

.cta-button:hover {
    background: transparent;
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

/* Section Styles */
section {
    padding: 5rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--light);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--primary);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.about-card {
    background: var(--darker);
    padding: 2rem;
    border: 2px solid var(--steel);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: var(--primary);
    transition: left 0.3s;
}

.about-card:hover::before {
    left: 0;
}

.about-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.about-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Certificates Section */
.certificates {
    background: var(--darker);
    padding: 4rem 5%;
    text-align: center;
}

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

.cert-icon {
    font-size: 4rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.price-card {
    background: var(--darker);
    padding: 2.5rem;
    border: 2px solid var(--steel);
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.price-card:hover {
    border-color: var(--primary);
    transform: scale(1.05);
}

.price-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, var(--darker) 0%, rgba(255, 107, 53, 0.1) 100%);
}

.price-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--light);
}

.price {
    font-size: 3rem;
    color: var(--primary);
    font-weight: bold;
    margin: 1rem 0;
}

.price-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.price-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--steel);
}

.price-features li::before {
    content: '✓ ';
    color: var(--primary);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--darker);
    padding: 2rem;
    border-left: 4px solid var(--primary);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.3;
}

.testimonial-text {
    margin-bottom: 1rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    color: var(--primary);
    font-weight: bold;
}

/* Contact Form */
.contact-section {
    background: var(--darker);
    padding: 4rem 5%;
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--light);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--dark);
    border: 2px solid var(--steel);
    color: var(--light);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--primary);
    color: white;
    border: none;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: var(--darker);
    border: 2px solid var(--primary);
}

/* Footer */
footer {
    background: var(--darker);
    padding: 2rem 5%;
    text-align: center;
    border-top: 2px solid var(--primary);
}

footer p {
    color: var(--steel);
    margin-bottom: 0.5rem;
}

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

footer a:hover {
    color: var(--accent);
    text-decoration: underline;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--darker);
    border-top: 2px solid var(--primary);
    padding: 1.5rem;
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-text h3 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cookie-text p {
    color: var(--light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    border-radius: 4px;
}

.cookie-accept {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.cookie-accept:hover {
    background: transparent;
    color: var(--primary);
    transform: translateY(-2px);
}

.cookie-decline {
    background: transparent;
    border-color: var(--steel);
    color: var(--light);
}

.cookie-decline:hover {
    background: var(--steel);
    color: var(--light);
    transform: translateY(-2px);
}

/* Mobile Cookie Banner */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-btn {
        flex: 1;
        min-width: 120px;
    }
    
    .cookie-text h3 {
        font-size: 1.1rem;
    }
    
    .cookie-text p {
        font-size: 0.9rem;
    }
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--light);
    font-size: 1.5rem;
    cursor: pointer;
}

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

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--darker);
        flex-direction: column;
        padding: 2rem;
    }

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

    .hero h1 {
        font-size: 2rem;
    }

    .hero-highlight {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* Checkbox RODO styles */
.checkbox-group {
    margin-bottom: 1.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: 16px !important;
    height: 16px !important;
    min-width: 16px !important;
    min-height: 16px !important;
    max-width: 16px !important;
    max-height: 16px !important;
    margin-top: 2px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: var(--dark);
    border: 2px solid var(--steel);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
    box-sizing: border-box;
    flex-shrink: 0;
    padding: 0;
}

.checkbox-label input[type="checkbox"]:checked {
    background: var(--primary);
    border-color: var(--primary);
}

.checkbox-label input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.checkbox-label input[type="checkbox"]:hover {
    border-color: var(--primary);
    transform: scale(1.05);
}

.checkbox-label span {
    color: var(--light);
}

.checkbox-label a {
    color: var(--primary);
    text-decoration: underline;
    transition: color 0.3s;
}

.checkbox-label a:hover {
    color: var(--accent);
}

/* Validation styles */
.checkbox-label input[type="checkbox"]:invalid {
    outline: 2px solid #ff4444;
}

.checkbox-label input[type="checkbox"]:valid {
    outline: none;
}

/* Privacy Policy Page Styles */
.privacy-main {
    margin-top: 70px;
    padding: 2rem 5%;
    background: var(--dark);
    min-height: calc(100vh - 70px);
}

.privacy-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--darker);
    padding: 3rem;
    border-radius: 8px;
    border: 2px solid var(--steel);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.privacy-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--primary);
}

.privacy-header h1 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.privacy-date {
    color: var(--steel);
    font-size: 1rem;
    font-style: italic;
}

.privacy-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--steel);
}

.privacy-section:last-of-type {
    border-bottom: none;
}

.privacy-section h2 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.privacy-section h3 {
    color: var(--light);
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem 0;
}

.privacy-section h4 {
    color: var(--accent);
    font-size: 1.2rem;
    margin: 1rem 0 0.5rem 0;
}

.privacy-section p {
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.privacy-section ul {
    color: #ccc;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.privacy-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.privacy-section a {
    color: var(--primary);
    text-decoration: underline;
    transition: color 0.3s;
}

.privacy-section a:hover {
    color: var(--accent);
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.right-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 107, 53, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
    transition: transform 0.3s ease;
}

.right-item:hover {
    transform: translateY(-2px);
}

.right-icon {
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
}

.right-item h4 {
    color: var(--light);
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.right-item p {
    margin: 0;
    font-size: 0.95rem;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.security-item {
    background: var(--dark);
    padding: 1rem;
    border-radius: 6px;
    border: 1px solid var(--steel);
    color: var(--light);
    text-align: center;
    transition: all 0.3s ease;
}

.security-item:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.supervisory-authority {
    background: var(--dark);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
    margin: 1.5rem 0;
}

.supervisory-authority h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.contact-note {
    background: rgba(255, 107, 53, 0.1);
    padding: 1rem;
    border-radius: 6px;
    border-left: 4px solid var(--primary);
    margin-top: 1.5rem;
}

.warning {
    background: rgba(251, 191, 36, 0.1);
    padding: 1rem;
    border-radius: 6px;
    border-left: 4px solid var(--accent);
    color: var(--accent);
    font-weight: 500;
}

.privacy-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--primary);
}

.privacy-footer p {
    color: var(--steel);
    margin-bottom: 1rem;
}

.back-to-home {
    display: inline-block;
    color: var(--primary);
    text-decoration: none;
    font-weight: bold;
    padding: 0.8rem 2rem;
    border: 2px solid var(--primary);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.back-to-home:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Mobile Responsive for Privacy Policy */
@media (max-width: 768px) {
    .privacy-container {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .privacy-header h1 {
        font-size: 2rem;
    }
    
    .privacy-section h2 {
        font-size: 1.5rem;
    }
    
    .rights-grid {
        grid-template-columns: 1fr;
    }
    
    .security-grid {
        grid-template-columns: 1fr;
    }
    
    .right-item {
        padding: 1rem;
    }
}