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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #DF2076 0%, #18cae6 100%);
    color: #ffffff;
    min-height: 100vh;
}

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

/* Header & Navigation */
header {
    padding: 1.5rem 2rem;
}

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

.logo {
    height: 50px;
    width: auto;
}

.contact-btn {
    background: #ffffff;
    color: #DF2076;
    border: 2px solid #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: transparent;
    border-color: #ffffff;
    color: #ffffff;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
    margin-bottom: 4rem;
}

.hero-image {
    animation: fadeInUp 1s ease-out;
    animation-delay: 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(223, 32, 118, 0.2);
    border: 1px solid rgba(223, 32, 118, 0.15);
}

.badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: #DF2076;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(223, 32, 118, 0.3);
}

.btn-primary:hover {
    background: #c91d68;
    box-shadow: 0 15px 40px rgba(223, 32, 118, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

/* Legal Content Section */
.legal-content {
    background: #ffffff;
    padding: 3rem;
    border-radius: 16px;
    margin: 2rem auto;
    max-width: 1000px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.legal-content h3,
.legal-content h5 {
    color: #DF2076;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
}

.legal-content h5 {
    font-size: 1.2rem;
    font-weight: 600;
}

.legal-content p {
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.legal-content h3:first-child {
    margin-top: 0;
}

/* Products Section */
.products {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.products h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.product-item:hover {
    border-color: #DF2076;
    background: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(223, 32, 118, 0.25);
}

.product-item h3 {
    color: #DF2076;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.product-item p {
    color: #4a4a4a;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    background: rgba(0, 0, 0, 0.1);
    padding: 5rem 2rem;
    text-align: center;
    margin: 4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.contact-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
}

.contact-info {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.email {
    color: #ffffff;
    font-size: 1.3rem;
    text-decoration: none;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.email:hover {
    background: rgba(255, 255, 255, 0.25);
}

.phone {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
}

/* Footer */
footer {
    padding: 3rem 2rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.peppol-badge {
    max-width: 150px;
    height: auto;
    margin-bottom: 1.5rem;
}

footer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-links {
    margin: 1rem 0;
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-links .separator {
    color: rgba(255, 255, 255, 0.5);
}

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

/* Responsive */
@media (max-width: 768px) {
    .logo {
        height: 40px;
    }

    h1 {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .hero {
        padding: 3rem 1.5rem;
    }

    .hero-content {
        margin-bottom: 2.5rem;
    }

    .hero-image img {
        border-radius: 12px;
    }

    .products {
        padding: 4rem 1.5rem;
    }

    .products h2 {
        font-size: 2rem;
    }

    .contact-section {
        padding: 3rem 1.5rem;
    }

    .contact-content h2 {
        font-size: 2rem;
    }

    .contact-info {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .legal-content {
        padding: 2rem 1.5rem;
        margin: 1rem;
        border-radius: 12px;
    }

    .legal-content h3 {
        font-size: 1.5rem;
    }

    .legal-content h5 {
        font-size: 1.1rem;
    }
}
