* {
    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, #9B59B6 0%, #3498DB 100%);
    min-height: 100vh;
    color: white;
    line-height: 1.6;
}

/* Header Styles */
.header {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

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

.logo {
    width: 128px;
    height: 45px;
    position: relative;
    top: auto;
    left: auto;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

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

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #FCD259;
}

.nav-link.active {
    color: #FCD259;
    font-weight: bold;
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 30px 60px;
}

/* Hero Section */
.hero-section {
    text-align: center;
    margin-bottom: 80px;
}

.galiao-circle {
    width: 80px;
    height: 80px;
    background-color: #FCD259;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
    color: white;
    margin: 0 auto 30px;
}

.app-name {
    color: white;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 40px;
}

.phones {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.phone {
    width: 170px;
    height: auto;
    object-fit: contain;
}

.app-description {
    color: white;
    font-size: 18px;
    margin-bottom: 60px;
}

/* App Introduction */
.app-intro {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    color: #FCD259;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.intro-text {
    color: white;
    font-size: 16px;
    max-width: 800px;
    margin: 0 auto;
}

/* Features */
.features {
    text-align: center;
    margin-bottom: 80px;
}

.feature-list {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.feature-item {
    max-width: 250px;
    text-align: left;
}

.feature-title {
    color: #FCD259;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.feature-text {
    color: white;
    font-size: 14px;
}

/* About Section */
.about-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Join Us Section */
.join-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.page-title {
    color: white;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 40px;
}

.section-subtitle {
    color: white;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: left;
}

.about-text {
    color: white;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 60px;
    text-align: left;
}

.contact-title {
    color: white;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
}

.contact-info {
    color: white;
    font-size: 16px;
    line-height: 1.8;
    text-align: left;
}

.contact-info p {
    margin-bottom: 15px;
}

/* Job List */
.job-list {
    margin-bottom: 60px;
    text-align: left;
}

.job-item {
    margin-bottom: 30px;
}

.job-title {
    color: white;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.job-requirement {
    color: white;
    font-size: 14px;
    margin-left: 20px;
}

/* Terms Section */
.terms-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.terms-content {
    color: white;
    font-size: 16px;
    line-height: 1.8;
    text-align: left;
}

.terms-content h2 {
    color: #FCD259;
    font-size: 20px;
    font-weight: bold;
    margin-top: 40px;
    margin-bottom: 20px;
}

.terms-content p {
    margin-bottom: 20px;
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px 30px;
    background-color: rgba(0, 0, 0, 0.1);
}

.company-info {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    line-height: 2;
}

.company-info p {
    margin-bottom: 5px;
}

.company-info a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.company-info a:hover {
    color: white;
    border-bottom-color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        padding: 0 20px;
    }
    
    .logo {
        width: 110px;
        height: 39px;
    }
    
    .nav {
        gap: 20px;
    }
    
    .nav-link {
        font-size: 14px;
    }
    
    .main-content {
        padding: 100px 20px 50px;
    }
    
    .galiao-circle {
        width: 70px;
        height: 70px;
        font-size: 16px;
    }
    
    .app-name {
        font-size: 24px;
    }
    
    .phones {
        gap: 20px;
    }
    
    .phone {
        width: 160px;
    }
    
    .app-description {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .feature-list {
        gap: 30px;
    }
    
    .feature-item {
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .header-content {
        padding: 0 15px;
        flex-direction: column;
        gap: 15px;
    }
    
    .logo {
        width: 100px;
        height: 35px;
    }
    
    .nav {
        gap: 15px;
    }
    
    .main-content {
        padding: 120px 15px 40px;
    }
    
    .galiao-circle {
        width: 60px;
        height: 60px;
        font-size: 14px;
    }
    
    .app-name {
        font-size: 22px;
        margin-bottom: 30px;
    }
    
    .phones {
        gap: 15px;
    }
    
    .phone {
        width: 140px;
    }
    
    .app-description {
        font-size: 15px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .intro-text {
        font-size: 14px;
    }
    
    .feature-list {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .feature-item {
        text-align: center;
        max-width: 100%;
    }
    
    .company-info {
        font-size: 11px;
    }
}

@media (max-width: 360px) {
    .phone {
        width: 130px;
    }
    
    .phones {
        gap: 10px;
    }
}