@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #ffffff;
    color: #000;
    line-height: 1.4;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    padding: 20px 0;
    border-bottom: 1px solid #E5E7EB;
}

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

.hero-section {
    margin: 40px -20px;
}

.hero-card {
    min-height: 256px;
    background: white;
    border-radius: 24px;
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 20px;
}

.hero-card::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 70%;
    background: #E3DACC;
    border-radius: 24px;
    z-index: 1;
}

.hero-text {
    flex: 1;
    max-width: 50%;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 64px;
    font-weight: bold;
    line-height: 1.1;
    color: #000;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.building-blocks-img {
    max-width: 300px;
    height: auto;
}

.description-section {
    margin: 60px -20px;
}

.description-card {
    background: #E5E7EB;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    margin: 0 20px;
    position: relative;
}

.description-text {
    flex: 1;
    text-align: center;
    z-index: 2;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.description-text p {
    font-size: 18px;
    color: #000;
    margin-bottom: 4px;
    font-weight: 400;
}

.description-text h2 {
    font-size: 44px;
    font-weight: 600;
    color: #000;
    line-height: 1.1;
}

.robot-img {
    width: 180px;
    height: auto;
    position: absolute;
    right: 50%;
    transform: translateX(50%);
    bottom: 0;
    z-index: 1;
}

/* Legal/Privacy Policy Styles */
.legal-section {
    margin: 40px -20px;
}

.legal-card {
    background: #E5E7EB;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 160px;
    margin: 0 20px;
    position: relative;
    padding: 40px;
}

.legal-img {
    width: 120px;
    height: auto;
    opacity: 0.8;
}

/* Privacy Policy Content */
.privacy-content {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
}

.privacy-content h1 {
    font-size: 48px;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
    line-height: 1.1;
}

.privacy-content > p:first-of-type {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

.privacy-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
    color: #333;
}

.privacy-content .privacy-heading {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin-top: 40px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.privacy-content br {
    margin-bottom: 8px;
}

/* Lists in privacy policy */
.privacy-content p:has(+ p:contains("•")) {
    margin-bottom: 8px;
}

/* Email and link styling */
.privacy-content a,
.privacy-content b:contains("@") {
    color: #2563eb;
    text-decoration: none;
}

.privacy-content a:hover {
    text-decoration: underline;
}

/* Better spacing for sections */
.privacy-content > p:empty {
    margin: 20px 0;
}

footer {
    padding: 40px 0 60px;
    border-top: 1px solid #eee;
    margin-top: 80px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 14px;
    color: #666;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    font-size: 14px;
    color: #666;
    text-decoration: none;
}

.footer-links a:hover {
    color: #000;
}

/* Desktop Styles */
@media (min-width: 769px) {
    .robot-img {
        right: 24px;
        transform: none;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    header {
        padding: 20px 0;
    }
    
    .logo {
        height: 20px;
    }
    
    .hero-section {
        margin: 20px -16px;
    }
    
    .hero-card {
        padding: 40px 24px;
        flex-direction: column-reverse;
        text-align: center;
        background: #E3DACC;
        min-height: auto;
        margin: 0 16px;
    }
    
    .hero-card::before {
        display: none;
    }
    
    .hero-text {
        max-width: 100%;
        margin-top: 30px;
    }
    
    .hero-text h1 {
        font-size: 36px;
    }
    
    .building-blocks-img {
        max-width: 200px;
        height: auto;
    }
    
    .description-section {
        margin: 40px -16px;
    }

    .description-text {
        margin-top: 30px;
        margin-bottom: 200px;
    }

    .description-text h2 {
        font-size: 36px;
    }
    
    .description-card {
        margin: 0 16px;
    }

    .legal-section {
        margin: 20px -16px;
    }

    .legal-card {
        margin: 0 16px;
        min-height: 120px;
        padding: 30px;
    }

    .legal-img {
        width: 80px;
    }
    
    .privacy-content {
        margin: 40px auto;
        padding: 0 16px;
    }

    .privacy-content h1 {
        font-size: 32px;
    }

    .privacy-content .privacy-heading {
        font-size: 18px;
        margin-top: 32px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 28px;
    }
    
    .building-blocks-img {
        max-width: 150px;
    }

    .privacy-content h1 {
        font-size: 28px;
    }
}