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

.profile-section {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.profile-avatar {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.profile-avatar span {
    font-size: 40px;
}

.profile-info h2 {
    font-size: 24px;
    font-weight: bold;
    color: #FFFFFF;
    margin-bottom: 5px;
}

.profile-info p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.section-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
}

.section-header {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.section-header h3 {
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0;
}

.section-content {
    padding: 10px 0;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.info-value {
    font-size: 14px;
    color: #FFFFFF;
    font-weight: 500;
}

.agreement-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: #FFFFFF;
    text-decoration: none;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.agreement-item:last-child {
    border-bottom: none;
}

.agreement-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.agreement-icon {
    font-size: 20px;
    margin-right: 15px;
}

.agreement-text {
    flex: 1;
    font-size: 15px;
}

.arrow {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.about-text {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    padding: 15px 20px;
    margin: 0;
}

.about-text:last-child {
    padding-top: 0;
}

@media (max-width: 768px) {
    .my-container {
        padding: 15px;
    }

    .profile-section {
        padding: 25px;
    }

    .profile-avatar {
        width: 60px;
        height: 60px;
    }

    .profile-avatar span {
        font-size: 30px;
    }

    .profile-info h2 {
        font-size: 20px;
    }

    .section-header h3 {
        font-size: 15px;
    }

    .agreement-text {
        font-size: 14px;
    }

    .about-text {
        font-size: 13px;
    }
}

@media (max-width: 400px) {
    .profile-section {
        padding: 20px;
    }

    .profile-avatar {
        width: 50px;
        height: 50px;
    }

    .profile-avatar span {
        font-size: 25px;
    }

    .profile-info h2 {
        font-size: 18px;
    }
}
