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

:root {
    --primary-color: #db0c9b;
    --primary-dark: #0a0a0a;
    --text-secondary: #4a5565;
    --border-color: rgba(0, 0, 0, 0.1);
    --light-bg: #f9fafb;
    --light-blue-bg: #eff6ff;
    --border-light: #e5e7eb;
    --text-light: #d1d5dc;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arimo', sans-serif;
    background-color: white;
    color: var(--primary-dark);
    line-height: 1.6;
}

.app {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid var(--border-color);
    backdrop-filter: blur(2px);
    padding: 0 50.5px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
    max-width: 1573px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-img {
    width: 28px;
    height: 28px;
}

#logo-link {
    text-decoration: none;
}   

.logo-text {
    font-size: 20px;
    font-weight: bold;
    background: linear-gradient(90deg, rgb(0, 0, 0) 0%, rgb(219, 12, 155) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav a {
    font-size: 14px;
    color: var(--primary-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Main Content */
.main-content {
    flex: 1;
    width: 100%;
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 128px 32px 0;
    max-width: 1573px;
    margin: 0 auto;
    width: 100%;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--light-blue-bg);
    border-radius: 33554400px;
    padding: 10px 16px;
    width: fit-content;
}

.badge-icon {
    width: 25px;
    height: 25px;
}

.badge span {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 500;
}

.hero {
    box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-radius: 16px;
    background: rgb(242, 241, 241);
    padding-bottom: 20px;
    padding-top:20px;
    margin-top: 50px;
}

.hero-heading {
    font-size: 60px;
    line-height: 75px;
    font-weight: 600;
    color: var(--primary-dark);
}

.hero-paragraph {
    font-size: 18px;
    line-height: 28px;
    color: var(--text-secondary);
    max-width: 554px;
}

.hero-right {
    position: relative;
    height: 500px;
}

.hero-image-wrapper {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgb(21, 93, 252) 0%, rgb(152, 16, 250) 100%);
    filter: blur(64px);
    opacity: 0.2;
    border-radius: 16px;
}

.hero-image {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 16px;
    /* box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25); */
}

/* Ensure the actual image sits above the blurred decorative wrapper */
.hero-image-wrapper { z-index: 0; 
}
.hero-image { z-index: 1; 
}

/* Buttons */
.btn {
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Arimo', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outlined {
    background: white;
    color: var(--primary-dark);
    border: 1px solid var(--border-color);
    width: fit-content;
}

.btn-outlined:hover {
    background: var(--light-bg);
}

.btn-white {
    background: white;
    color: black;
    padding: 18px 40px;
    font-size: 16px;
}

.btn-white:hover {
    background: var(--light-bg);
}

.btn-dark {
    background: #030213;
    color: white;
    width: 100%;
    justify-content: center;
}

.btn-dark:hover {
    background: #1a1620;
}

/* Services Section */
.services {
    padding: 120px 32px;
    max-width: 1573px;
    margin: 0 auto;
    width: 100%;
}

.services-header {
    text-align: center;
    margin-bottom: 64px;
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
}

.services-header h2 {
    font-size: 48px;
    line-height: 48px;
    margin-bottom: 16px;
    color: var(--primary-dark);
}

.services-header p {
    font-size: 18px;
    line-height: 28px;
    color: var(--text-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    width: 50px;
    height: 50px;
}

.service-card h3 {
    font-size: 20px;
    line-height: 28px;
    color: var(--primary-dark);
}

.service-card p {
    font-size: 16px;
    line-height: 24px;
    color: var(--text-secondary);
}

/* CTA Section */
.cta-gradient {
    background: linear-gradient(90deg, black 0%, #db0c9b 100%);
    color: white;
    padding: 48px 32px;
    border-radius: 16px;
    text-align: center;
    margin: 0 auto 100px;
    max-width: 1573px;
    width: calc(100% - 64px);
    box-shadow: 0px 50px 50px -12px rgba(0, 0, 0, 0.25);
}

.cta-gradient h2 {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 24px;
    color: white;
}

.cta-gradient p {
    font-size: 18px;
    line-height: 28px;
    color: var(--light-blue-bg);
    margin-bottom: 32px;
    max-width: 710px;
    margin-left: auto;
    margin-right: auto;
}

/* How We Work */
.how-we-work {
    padding: 120px 32px;
    max-width: 1573px;
    margin: 0 auto;
    width: 100%;
}

.how-we-work h2 {
    font-size: 48px;
    line-height: 48px;
    text-align: center;
    margin-bottom: 64px;
    color: var(--primary-dark);
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.timeline-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 24px;
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
}

.timeline-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-icon img {
    width: 50px;
    height: 50px;
}

.timeline-number {
    font-size: 30px;
    font-weight: bold;
    color: var(--border-light);
}

.timeline-card h3 {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 16px;
    color: var(--primary-dark);
}

.timeline-card p {
    font-size: 16px;
    line-height: 24px;
    color: var(--text-secondary);
}

/* About Section */
.about {
    padding: 120px 32px;
    max-width: 1573px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}

.about h2 {
    font-size: 48px;
    line-height: 48px;
    margin-bottom: 24px;
    color: var(--primary-dark);
}

.about p {
    font-size: 18px;
    line-height: 29.25px;
    color: var(--text-secondary);
    max-width: 716px;
    margin-left: auto;
    margin-right: auto;
}

.about strong {
    font-weight: bold;
    color: var(--primary-dark);
}

/* Contact Section */
.contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    background: var(--light-bg);
    border-radius: 14px;
    padding: 30px;
    margin: 0 32px 100px;
    max-width: calc(1573px - 64px);
    margin-left: auto;
    margin-right: auto;
}


.contact-left h2 {
    font-size: 48px;
    line-height: 48px;
    margin-bottom: 16px;
    color: var(--primary-dark);
}

.contact-left > p {
    font-size: 18px;
    line-height: 28px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.contact-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 17px;
    display: flex;
    gap: 16px;
    align-items: center;
}

.contact-icon {
    background: var(--light-blue-bg);
    border-radius: 10px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon img {
    width: 20px;
    height: 20px;
}

.contact-label {
    font-size: 14px;
    color: var(--text-secondary);
}

.contact-value {
    font-size: 18px;
    color: var(--primary-dark);
}

.contact-right{
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-image{
    width: 50%;
    height: 100%;
    border-radius: 14px;
    object-fit: cover;
}

/* Contact Form */
.contact-form {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 33px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    color: var(--primary-dark);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    background: #f3f3f5;
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 12px;
    font-size: 14px;
    font-family: 'Arimo', sans-serif;
    color: var(--primary-dark);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #717182;
}

.form-group textarea {
    padding: 8px 12px;
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: var(--text-light);
    padding: 25px;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 25px;
    max-width: 1573px;
    margin-left: auto;
    margin-right: auto;
}

.footer-brand {
    font-size: 20px;
    font-weight: bold;
    background: linear-gradient(90deg, rgb(219, 12, 155) 0%, rgb(255, 255, 255) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.footer-col h4 {
    font-size: 16px;
    color: white;
    margin-bottom: 16px;
}

.footer-col > p {
    font-size: 14px;
    line-height: 20px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #1e2939;
    padding-top: 25px;
    font-size: 14px;
    max-width: 1573px;
    margin-left: auto;
    margin-right: auto;
}

.footer-links {
    display: flex;
    gap: 24px;
    font-size: 14px;
}

#privacylink,
#termslink {
    color: white;
    text-decoration: none;
}

#privacylink:hover{
    color: var(--text-light);
    text-decoration: none;
}

#termslink:hover{
    color: var(--text-light);
    text-decoration: none;
}

.legal-page, .terms-page {
    padding: 120px 32px;
    max-width: 1573px;
    margin: 0 auto;
    width: 100%;
}

#privacyTitle, #termsTitle {
    font-size: 40px;
    line-height: 40px;
    margin-top: 0px;
    margin-bottom: 30px;
    color: var(--primary-dark);
}

#lastUpdated{
    font-size: 14px;
    line-height: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

#intro, #useData, #legalBasis, #dataRetention, #sharing{
    font-size: 18px;
    line-height: 28px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

ul{
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 32px;
}

#intro2{
    font-size: 18px;
    line-height: 28px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}


/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .services-grid,
    .timeline-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 16px;
        margin-top: 16px;
    }

    .hero {
        padding: 64px 16px 0;
    }

    .hero-heading {
        font-size: 32px;
        line-height: 40px;
    }

    .services-grid,
    .timeline-grid {
        grid-template-columns: 1fr;
    }

    .cta-gradient {
        padding: 48px 24px;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}
