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

body {
    font-family: 'Noto Sans SC', 'PingFang SC', sans-serif;
    background-color: #F6F4F1;
    color: rgba(0, 0, 0, 0.95);
    line-height: 1.6;
    min-height: 100vh;
    padding-bottom: 60px; /* 为固定的footer留出空间 */
}

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

/* Header Styles */
header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    margin-top: calc(100vh * 70/820);
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-circle {
    width: 41.197px;
    height: 41.197px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    width: 41.197px;
    height: 41.197px;
}

.youware-text {
    margin-left: 10px;
    width: 131.234px;
    height: 18.891px;
}

.divider {
    height: 24px;
    width: 1px;
    background-color: #ccc;
    margin: 0 20px;
}

.header-text {
    color: rgba(0, 0, 0, 0.95);
    font-family: "PingFang SC", sans-serif;
    font-size: 26px;
    font-style: normal;
    font-weight: 400;
    line-height: 42px; /* 161.538% */
}

/* Main Content Styles */
.content-wrapper {
    display: flex;
    margin-top: 20px;
    background-color: #fff;
    border-radius: 16px;
    overflow: hidden;
}

.content-image {
    width: 37.9%; /* 360/950 = 0.379 = 37.9% */
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('yourware_assets/background.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.image-overlay {
    text-align: center;
    color: white;
}

.content-logo {
    width: 84px;
    height: 84px;
    filter: brightness(0) invert(1); /* Make logo white */
}

.content-title {
    color: rgba(255, 255, 255, 0.95);
    text-align: center;
    font-family: "Courier Prime";
    font-size: 28px;
    font-style: normal;
    font-weight: 250;
    line-height: normal;
    margin-top: 10px;
}

.content-text {
    width: 62.1%; /* (950-360)/950 = 0.621 = 62.1% */
    padding: 60px 60px 30px 60px;
}

h3 {
    color: rgba(0, 0, 0, 0.95);
    font-family: "PingFang SC", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
    margin-bottom: 12px;
}

section {
    margin-bottom: 30px;
}

section p {
    color: rgba(0, 0, 0, 0.50);
    font-family: "PingFang SC", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
    margin-bottom: 16px;
}

/* Footer Styles */
footer {
    color: rgba(0, 0, 0, 0.65);
    text-align: center;
    font-family: "PingFang SC", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    text-transform: capitalize;
    padding: 15px 0;
    position: fixed;
    bottom: 15px;
    left: 0;
    width: 100%;
}

footer p {
    margin-bottom: 5px;
}

.icp-info a {
    color: rgba(0, 0, 0, 0.5);
    text-decoration: none;
    font-size: 11px;
    transition: color 0.3s ease;
}

.icp-info a:hover {
    color: rgba(0, 0, 0, 0.8);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
    }
    
    .content-image, .content-text {
        width: 100%;
    }
    
    .content-image {
        min-height: 300px;
    }
    
    .content-text {
        padding: 30px 20px;
    }
    
    header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .divider {
        display: none;
    }
    
    .header-text {
        margin-top: 10px;
    }
}