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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #333;
    min-height: 100vh;
    background: #fff;
    position: relative;
    overflow-x: hidden;
}

/* Background */
.hero-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    overflow: hidden;
}

.bg-image, .bg-mask {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100vw;
    min-height: 100vh;
    width: 100vw;
    height: 100vh;
    object-fit: fill;
    transform-origin: center;
    margin: 0;
    padding: 0;
}

.bg-mask {
    mix-blend-mode: multiply;
}

/* Header */
header {
    padding: 1rem 2rem;
    text-align: left;
    position: relative;
    z-index: 3;
}

.logo img {
    height: 40px;
    width: auto;
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    padding-top: 2rem;
    height: 600px;
    max-width: 1440px;
    margin: 0 auto;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 2rem;
    margin-top: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.subtitle {
    font-size: 1.5rem;
    color: #666;
}

.avatar-group {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.avatar-group.left {
    left: 10%;
}

.avatar-group.right {
    right: 10%;
}

.avatar {
    width: 194px;
    height: 414px;
    object-fit: cover;
}

.decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.bubble {
    position: absolute;
    width: 45px;
    right: 25%;
    top: 15%;
}

.hi-bubble {
    position: absolute;
    width: 55px;
    left: 25%;
    top: 60%;
    transform: rotate(-5deg);
}

.heart {
    position: absolute;
    width: 30px;
    right: 35%;
    top: 65%;
}

/* Showcase Section */
.showcase {
    position: relative;
    padding: 4rem 0;
    margin: 4rem 0;
    overflow: hidden;
}

.showcase-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.middle-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showcase-images {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.showcase-img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 4rem 2rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.feature-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    flex: 1;
    min-width: 300px;
    max-width: 350px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 1rem;
    color: #333;
}

.feature-card p {
    color: #666;
    font-size: 16px;
    line-height: 1.5;
}

/* Description Section */
.description {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 2rem;
    text-align: center;
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    position: relative;
    z-index: 2;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    background: transparent;
    position: relative;
    z-index: 2;
}

.footer-links {
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: #666;
    text-decoration: underline;
    margin: 0 1.5rem;
    font-size: 16px;
    transition: color 0.3s ease;
}

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

.copyright, .contact {
    color: #666;
    font-size: 14px;
    margin: 0.5rem 0;
}

.contact a {
    color: #4A90E2;
    text-decoration: none;
}

/* Privacy Policy Page */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.back-link {
    display: inline-block;
    margin: 2rem 0;
    color: #4A90E2;
    text-decoration: none;
    font-size: 16px;
}

.back-link:hover {
    text-decoration: underline;
}

.policy-content {
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin-bottom: 4rem;
}

.policy-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.policy-content h2 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: #333;
}

.policy-content p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: #666;
}

.policy-content ul {
    margin: 1rem 0 2rem 2rem;
}

.policy-content li {
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.6;
}

.policy-content a {
    color: #4A90E2;
    text-decoration: none;
}

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

.company-info {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.company-info h2 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.company-info p {
    margin-bottom: 0.5rem;
    color: #666;
    font-size: 14px;
}

/* Company Section */
.company-section {
    padding: 3rem 0;
    margin: 4rem 0 0 0;
    position: relative;
    z-index: 2;
}

.company-section .company-info {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem;
    border-top: none;
}

.company-section .company-info h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.company-section .company-info p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .policy-content {
        padding: 2rem;
    }

    .policy-content h1 {
        font-size: 2rem;
    }

    .policy-content h2 {
        font-size: 1.5rem;
    }

    .hero h1 {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .showcase-images {
        flex-wrap: wrap;
        gap: 10px;
    }

    .showcase-img {
        width: 150px;
        height: 150px;
    }

    .feature-card {
        min-width: 100%;
    }

    .company-section {
        padding: 2rem 0;
        margin: 2rem 0 0 0;
    }

    .company-section .company-info h2 {
        font-size: 1.5rem;
    }
} 